19 lines
456 B
YAML
19 lines
456 B
YAML
---
|
|
|
|
- name: '[CONFIGURE] - Create log file'
|
|
file:
|
|
path: "{{ etherpad_logfile }}"
|
|
state: touch
|
|
owner: "{{ etherpad_username }}"
|
|
group: "{{ etherpad_group }}"
|
|
mode: 0755
|
|
|
|
- name: '[CONFIGURE] - Deploy config'
|
|
template:
|
|
src: var/www/etherpad-lite/settings.json.j2
|
|
dest: "{{ etherpad_app_dir }}/settings.json"
|
|
owner: "{{ etherpad_username }}"
|
|
group: "{{ etherpad_group }}"
|
|
mode: 0644
|
|
notify:
|
|
restart etherpad
|