monitored/tasks/main.yml
2018-03-13 19:10:08 +01:00

28 lines
898 B
YAML

---
- fail: msg="This system should not be monitored"
when: monitored_dont is defined
- fail: msg="Neither monitored_by_(ssh|nrpe) is set"
when: monitored_by_nrpe == False and monitored_by_ssh == False
- name: Gather OS Specific Variables
include_vars: "{{ item }}"
with_first_found:
- "{{ (ansible_distribution|lower).split(' ')[0] }}-{{ (ansible_distribution_version|lower).split(' ')[0] }}.yml"
- "{{ (ansible_distribution|lower).split(' ')[0] }}-{{ (ansible_distribution_major_version|lower).split(' ')[0] }}.yml"
- "{{ (ansible_distribution|lower).split(' ')[0] }}.yml"
- "{{ (ansible_os_family|lower).split(' ')[0] }}.yml"
- "defaults.yml"
- import_tasks: user.yml
- include_tasks: packages.yml
when: monitored_packages_install != False
- include_tasks: nrpe.yml
when: monitored_by_nrpe == True
- include_tasks: ssh.yml
when: monitored_by_ssh == True