ansible-roles/roles/etherpad/templates/perms.sh.j2

8 lines
341 B
Plaintext
Raw Normal View History

2021-12-01 19:13:34 +01:00
#!/bin/bash -e
restorecon -R {{ etherpad_root_dir }}
chown -R {{ etherpad_user }}:{{ etherpad_user }} {{ etherpad_root_dir }}/app
find {{ etherpad_root_dir }}/app -type f -exec chmod 644 "{}" \;
find {{ etherpad_root_dir }}/app -type d -exec chmod 755 "{}" \;
chmod 600 {{ etherpad_root_dir }}/app/{settings.json,SESSIONKEY.txt,APIKEY.txt}