ansible-roles/tomcat-instance/tasks/nagios.yml
Jérémy Lecour 8920ff1ee4 Add "always_run: yes" where it's pertinent
There is also the "check_mode: no", but commented,
for when we switch to Ansible 2.2
2017-01-31 11:45:35 +01:00

34 lines
748 B
YAML

---
- name: Intall monitorings plugins
apt:
name: monitoring-plugins
state: present
- name: Check if /usr is a partition
shell: "mount | grep 'on /usr type'"
args:
warn: no
changed_when: False
failed_when: False
#check_mode: no (for migration to Ansible 2.2)
always_run: yes
register: usr_partition
- name: Mount /usr in rw
command: mount -o remount,rw /usr
args:
warn: no
changed_when: False
when: usr_partition.rc == 0
- name: Create Nagios plugins dir
file:
path: '/usr/local/lib/nagios/plugins'
state: directory
- name: Copy Tomcat instance check
template:
src: 'templates/check_tomcat_instance.sh.j2'
dest: '/usr/local/lib/nagios/plugins/check_tomcat_instance.sh'
mode: 0755