I created an issue upstream as there is no possibility to remove modules from cli. The main dev will do is tomorrow normally. So I keep this as WIP at the moment. Reviewed-on: #21 Reviewed-by: muppeth <muppeth@no-reply@disroot.org> Co-authored-by: meaz <meaz@disroot.org> Co-committed-by: meaz <meaz@disroot.org>
21 lines
490 B
YAML
21 lines
490 B
YAML
---
|
|
|
|
- name: '[CONFIGURE] - Create log file'
|
|
file:
|
|
path: "{{ etherpad_logfile }}"
|
|
state: touch
|
|
owner: "{{ etherpad_username }}"
|
|
group: "{{ etherpad_group }}"
|
|
mode: 0755
|
|
tags: config
|
|
|
|
- name: '[CONFIGURE] - Deploy config'
|
|
template:
|
|
src: var/www/etherpad-lite/settings.json.j2
|
|
dest: "{{ etherpad_app_dir }}/app/settings.json"
|
|
owner: "{{ etherpad_username }}"
|
|
group: "{{ etherpad_group }}"
|
|
mode: 0644
|
|
notify:
|
|
restart etherpad
|
|
tags: config
|