1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/kiwix/tasks/enable-or-disable.yml

44 lines
1.6 KiB
YAML
Raw Normal View History

2020-02-14 01:31:34 +00:00
- name: Disable & Stop 'kiwix-serve' systemd service
systemd:
name: kiwix-serve
enabled: no
state: stopped
- name: Run /usr/bin/iiab-make-kiwix-lib to update {{ kiwix_library_xml }} # /library/zims/library.xml
2020-11-08 19:30:31 +00:00
command: /usr/bin/iiab-make-kiwix-lib
when: kiwix_enabled
# The above stops then starts kiwix-serve.service
- name: Enable & Ensure 'kiwix-serve.service' is running
systemd:
name: kiwix-serve
enabled: yes
state: started # Not needed...but can't hurt
when: kiwix_enabled
2020-02-14 01:31:34 +00:00
2020-02-14 01:31:34 +00:00
# TO DO: BOTH CRON ENTRIES BELOW *SHOULD* BE DELETED "when: not kiwix_enabled"
# In the past kiwix-serve did not stay running, so we'd been doing this hourly.
# @mgautierfr & others suggest kiwix-serve might be auto-restarted w/o cron in
# future, whenever service fails, if this really catches all cases??
# https://github.com/iiab/iiab/issues/484#issuecomment-342151726
- name: Make a crontab entry to restart kiwix-serve at 4AM (debuntu)
lineinfile:
# mn hr dy mo day-of-week[Sunday=0] username command-to-be-executed
line: "0 4 * * * root /bin/systemctl restart kiwix-serve.service"
dest: /etc/crontab
when: kiwix_enabled and is_debuntu
- name: Make a crontab entry to restart kiwix-serve at 4AM (redhat)
# * * * * * user-name command to be executed
lineinfile:
# mn hr dy mo day-of-week[Sunday=0] username command-to-be-executed
line: "0 4 * * * root /usr/bin/systemctl restart kiwix-serve.service"
dest: /etc/crontab
when: kiwix_enabled and is_redhat
- name: Enable/Disable/Restart NGINX
2020-02-14 01:31:34 +00:00
include_tasks: nginx.yml