ansible/roles/etherpad/tasks/1_user_group.yml

27 lines
464 B
YAML
Raw Normal View History

---
# Security #1
- name: Create EtherPad system group
group:
name: etherpad
system: yes
state: present
# Security #2
- name: Create EtherPad user
user:
name: etherpad
group: etherpad
2019-02-19 10:49:18 +01:00
home: /var/local/etherpad
comment: EtherPad
system: yes
state: present
# Security #3
- name: Secure Etherpad home directory
file:
2019-02-19 10:49:18 +01:00
path: /var/local/etherpad
state: directory
owner: etherpad
group: etherpad
mode: 0750