2021-03-14 17:53:38 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: '[CONFIGURE] - Create log file'
|
|
|
|
file:
|
|
|
|
path: "{{ etherpad_logfile }}"
|
|
|
|
state: touch
|
|
|
|
owner: "{{ etherpad_username }}"
|
|
|
|
group: "{{ etherpad_group }}"
|
|
|
|
mode: 0755
|
2024-04-16 15:08:00 +02:00
|
|
|
tags: config
|
2021-03-14 17:53:38 +01:00
|
|
|
|
|
|
|
- name: '[CONFIGURE] - Deploy config'
|
|
|
|
template:
|
|
|
|
src: var/www/etherpad-lite/settings.json.j2
|
2022-06-20 02:27:16 +02:00
|
|
|
dest: "{{ etherpad_app_dir }}/app/settings.json"
|
2021-03-14 17:53:38 +01:00
|
|
|
owner: "{{ etherpad_username }}"
|
|
|
|
group: "{{ etherpad_group }}"
|
|
|
|
mode: 0644
|
|
|
|
notify:
|
|
|
|
restart etherpad
|
2024-04-16 15:08:00 +02:00
|
|
|
tags: config
|