matrix-docker-ansible-deploy/roles/matrix-conduit/tasks/setup_conduit.yml

21 lines
560 B
YAML
Raw Normal View History

---
- name: Ensure Conduit config path exists
file:
path: "{{ matrix_conduit_config_path }}"
state: directory
mode: 0750
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
when: "matrix_conduit_enabled|bool"
- name: Ensure Conduit data path exists
2022-08-04 18:25:18 +00:00
file:
path: "{{ matrix_conduit_data_path }}"
state: directory
mode: 0770
2022-08-04 18:25:18 +00:00
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
when: "matrix_conduit_enabled|bool"
2022-08-04 18:25:18 +00:00
- import_tasks: "{{ role_path }}/tasks/conduit/setup.yml"