make icinga2 systemd service modifications to centos version

This commit is contained in:
staticsafe 2019-02-03 13:23:04 -05:00
parent 279b4e10f0
commit 7bfa5fa8d1
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,2 @@
[Service]
Restart=on-failure

View File

@ -20,7 +20,16 @@
packages:
- icinga2
- nagios-plugins-all
- name: Ensure icinga2 systemd folder exists
file:
path: /etc/systemd/system/icinga2.service.d/
state: directory
- name: Copy custom icinga2 systemd service file modifications
copy:
src: restart.conf
dest: /etc/systemd/system/icinga2.service.d/restart.conf
- name: Ensure that icinga2 systemd service is enabled
systemd:
name: icinga2
enabled: yes
daemon_reload: yes