1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-14 20:22:08 +00:00

Ansible Systemd doesn't have graceful reload available.

According to Ansible developers, there is no feature to do graceful
restart either in ansible systemd or in other Ansible apache modules.
This commit is contained in:
Arky 2018-08-27 16:41:43 +07:00
parent 3ba87e57dc
commit f8c50aa589

View file

@ -82,7 +82,6 @@
command: a2ensite calibre-web.conf
when: calibreweb_enabled
# TODO: Use Systemd service daemon_reload instead?
- name: Restart Apache after enabling calibre-web httpd2 site.
command: apachectl -k graceful
when: calibreweb_enabled
@ -99,7 +98,6 @@
command: a2dissite calibre-web.conf
when: not calibreweb_enabled
# TODO: Use Systemd service daemon_reload instead?
- name: Restart Apache after disabling calibre-web httpd2 site.
command: apachectl -k graceful
when: not calibreweb_enabled