Modify icinga-client role to add some systemd options
This commit is contained in:
parent
aa14f2f64f
commit
279b4e10f0
|
@ -0,0 +1,2 @@
|
|||
[Service]
|
||||
Restart=on-failure
|
|
@ -10,7 +10,16 @@
|
|||
with_items:
|
||||
- icinga2
|
||||
- monitoring-plugins
|
||||
- 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
|
||||
|
|
Loading…
Reference in New Issue