ansible-roles/drbd/tasks/nagios.yml

25 lines
501 B
YAML
Raw Normal View History

2016-12-16 12:27:38 +01:00
---
- name: Check if Nagios is installed
stat:
path: /usr/local/lib/nagios/plugins/
register: nagios_plugins_dir
2017-03-24 14:15:09 +01:00
check_mode: no
tags:
- drbd
- include_role:
2019-11-29 14:00:25 +01:00
name: evolix/remount-usr
tags:
- drbd
# https://exchange.nagios.org/components/com_mtree/attachment.php?link_id=3367&cf_id=30
- name: Install Nagios plugin
copy:
src: "nagios/check_drbd"
dest: "/usr/local/lib/nagios/plugins/check_drbd"
mode: "0755"
2017-01-12 14:56:05 +01:00
when: nagios_plugins_dir.stat.exists
tags:
- drbd