mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
12 lines
461 B
YAML
12 lines
461 B
YAML
- name: Enable http://box{{ lokole_url }} via Apache # http://box/lokole
|
|
command: a2ensite lokole.conf
|
|
when: lokole_enabled | bool
|
|
|
|
- name: Disable http://box{{ lokole_url }} via Apache # http://box/lokole
|
|
command: a2dissite lokole.conf
|
|
when: not lokole_enabled
|
|
|
|
- name: (Re)Start '{{ apache_service }}' systemd service
|
|
systemd:
|
|
name: "{{ apache_service }}" # apache2 or httpd, as set in /opt/iiab/iiab/vars/<OS>.yml
|
|
state: restarted
|