Don't double copy nagios plugins on noc servers.

This commit is contained in:
Kevin Fenzi 2014-07-28 19:38:31 +00:00
parent 72d4d67610
commit a6f4ff7fa0

View file

@ -19,7 +19,6 @@
- nagios_client
- 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
with_items:
- check_postfix_queue
@ -31,6 +30,7 @@
- check_fedmsg_producers_consumers.py
- check_supybot_plugin
- check_datanommer_timesince.py
when: not inventory_hostname.startswith('noc')
tags:
- nagios_client