3
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2025-10-18 22:23:23 +00:00
Files
matrix-docker-ansible-deploy/roles/matrix-server/tasks/setup_main.yml
Slavi Pantaleev 87f5883f24 Initial commit
2017-07-31 23:08:20 +03:00

20 lines
477 B
YAML

---
- name: Ensure Matrix group is created
group:
name: "{{ matrix_user_username }}"
gid: "{{ matrix_user_gid }}"
state: present
- name: Ensure Matrix user is created
user:
name: "{{ matrix_user_username }}"
uid: "{{ matrix_user_uid }}"
state: present
group: "{{ matrix_user_username }}"
- name: Ensure environment variables data path exists
file:
path: "{{ matrix_environment_variables_data_path }}"
state: directory
mode: 0700