monitored/tasks/main.yml

41 lines
1.3 KiB
YAML
Raw Normal View History

2016-12-14 17:57:19 +00:00
---
- 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:
2018-03-13 18:05:20 +00:00
- "{{ (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"
- name: "Install dependencies"
package:
name: "{{ monitored_packages_predepends }}"
state: latest
when: monitored_packages_predepends
2016-12-14 17:57:19 +00:00
- name: "INCLUDE: Create monitoring user"
import_tasks: user.yml
2016-12-14 17:57:19 +00:00
- name: "INCLUDE: Install always necessary packages"
include_tasks: packages.yml
2016-12-14 17:57:19 +00:00
when: monitored_packages_install != False
- name: "INCLUDE: Copy custom plugins"
include_tasks: plugins_custom.yml
when: monitored_plugins_custom|default([]) != []
- name: "INCLUDE: Monitoring by NRPE"
include_tasks: nrpe.yml
2016-12-14 17:57:19 +00:00
when: monitored_by_nrpe == True
- name: "INCLUDE: Monitoring by SSH"
include_tasks: ssh.yml
2016-12-14 17:57:19 +00:00
when: monitored_by_ssh == True