forked from ISTI-ansible-roles/ansible-roles
d4science-ghn-cluster: Add dedicated nagios checks for the postgresql databases.
This commit is contained in:
parent
f74c765894
commit
82d24fc22e
nagios/tasks
|
@ -7,13 +7,19 @@
|
||||||
- name: Additional nagios plugins when available
|
- name: Additional nagios plugins when available
|
||||||
apt: pkg={{ item }} state=installed
|
apt: pkg={{ item }} state=installed
|
||||||
with_items: '{{ nagios_plugins_contrib }}'
|
with_items: '{{ nagios_plugins_contrib }}'
|
||||||
when: is_not_debian_less_than_6
|
when: is_debian7
|
||||||
tags: [ 'nagios', 'nagios_plug_contrib' ]
|
tags: [ 'nagios', 'nagios_plug_contrib' ]
|
||||||
|
|
||||||
- name: Additional nagios plugins when available
|
- name: Additional nagios plugins when available
|
||||||
apt: pkg={{ item }} state=installed
|
apt: pkg={{ item }} state=installed
|
||||||
with_items: '{{ nagios_plugins_contrib }}'
|
with_items: '{{ nagios_plugins_contrib }}'
|
||||||
when: is_not_ubuntu_less_than_trusty
|
when: is_debian8
|
||||||
|
tags: [ 'nagios', 'nagios_plug_contrib' ]
|
||||||
|
|
||||||
|
- name: Additional nagios plugins when available
|
||||||
|
apt: pkg={{ item }} state=installed
|
||||||
|
with_items: '{{ nagios_plugins_contrib }}'
|
||||||
|
when: is_trusty
|
||||||
tags: [ 'nagios', 'nagios_plug_contrib' ]
|
tags: [ 'nagios', 'nagios_plug_contrib' ]
|
||||||
|
|
||||||
- name: Create the directory where our local plugins are installed
|
- name: Create the directory where our local plugins are installed
|
||||||
|
|
Loading…
Reference in New Issue