Fix old variable usage. Patch from janeznemanic. Thanks!
This commit is contained in:
parent
d011bbde2c
commit
f7d56ff2b1
98 changed files with 886 additions and 889 deletions
|
@ -3,7 +3,7 @@
|
|||
---
|
||||
# install pkgs:
|
||||
- name: install nagios client pkgs
|
||||
yum: name=$item state=installed
|
||||
yum: name={{ item }} state=installed
|
||||
with_items:
|
||||
- nrpe
|
||||
- nagios-plugins
|
||||
|
@ -18,7 +18,7 @@
|
|||
- packages
|
||||
|
||||
- name: install local nrpe check scripts that are not packaged
|
||||
copy: src=scripts/$item dest={{ libdir }}/nagios/plugins/$item mode=0755 owner=nagios group=nagios
|
||||
copy: src="scripts/{{ item }}" dest="{{ libdir }}/nagios/plugins/{{ item }}" mode=0755 owner=nagios group=nagios
|
||||
with_items:
|
||||
- check_postfix_queue
|
||||
- check_raid.py
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue