forked from ISTI-ansible-roles/ansible-roles
Fix a nagios task, where a loop was not correctly declared.
This commit is contained in:
parent
45fe30699b
commit
c087d0f412
|
@ -73,7 +73,8 @@
|
|||
tags: [ 'dell', 'nagios' ]
|
||||
|
||||
- name: Install some standalone plugins
|
||||
copy: src={{ nagios_dell_standalone_checks }} dest={{ nagios_local_plugdir }}/{{ item }} owner=root group=nagios mode=0750
|
||||
copy: src={{ item }} dest={{ nagios_local_plugdir }}/{{ item }} owner=root group=nagios mode=0750
|
||||
with_items: '{{ nagios_dell_standalone_checks }}'
|
||||
tags: [ 'dell', 'nagios' ]
|
||||
|
||||
- name: Install a cron job that removes the leaked semaphores created by the nagios check of Dell hardware status
|
||||
|
|
Loading…
Reference in New Issue