diff options
author | Kevin Fenzi <kevin@scrye.com> | 2016-05-27 17:55:08 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2016-05-27 17:55:08 +0000 |
commit | 38c200766ba3bebbc780bb0c0896bfee71084ce3 (patch) | |
tree | 20e3420d3f484ba744c4f20488a2f60f05690286 | |
parent | 0c2d5a74443a7aaf080e854269688fcc98e85f75 (diff) | |
download | ansible-38c200766ba3bebbc780bb0c0896bfee71084ce3.tar.gz ansible-38c200766ba3bebbc780bb0c0896bfee71084ce3.tar.xz ansible-38c200766ba3bebbc780bb0c0896bfee71084ce3.zip |
Fix typo
-rw-r--r-- | roles/nagios/client/templates/nrpe.cfg.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/nagios/client/templates/nrpe.cfg.j2 b/roles/nagios/client/templates/nrpe.cfg.j2 index 6fb16e59e..64e8a2aa6 100644 --- a/roles/nagios/client/templates/nrpe.cfg.j2 +++ b/roles/nagios/client/templates/nrpe.cfg.j2 @@ -201,7 +201,7 @@ include_dir=/etc/nrpe.d/ command[check_users]={{ libdir }}/nagios/plugins/check_users -w 5 -c 10 command[check_load]={{ libdir }}/nagios/plugins/check_load -w 15,10,5 -c 30,25,20 command[check_hda1]={{ libdir }}/nagios/plugins/check_disk -w 20% -c 10% -p /dev/hda1 -{% if inventory_hostname not in groups['zombie-infested'] +{% if inventory_hostname not in groups['zombie-infested'] %} command[check_zombie_procs]={{ libdir }}/nagios/plugins/check_procs -w 5 -c 10 -s Z {% else %} # This host is prone to Zombies and we do not care or want to alert on it so we make the limits very high |