2021-01-24 06:41:11 +00:00
|
|
|
---
|
|
|
|
- name: Ensure Dendrite paths exist
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.file:
|
2021-01-24 06:41:11 +00:00
|
|
|
path: "{{ item.path }}"
|
|
|
|
state: directory
|
|
|
|
mode: 0750
|
|
|
|
owner: "{{ matrix_user_username }}"
|
|
|
|
group: "{{ matrix_user_groupname }}"
|
|
|
|
with_items:
|
2022-02-05 20:32:54 +00:00
|
|
|
- {path: "{{ matrix_dendrite_config_dir_path }}", when: true}
|
|
|
|
- {path: "{{ matrix_dendrite_ext_path }}", when: true}
|
2022-04-05 02:40:37 +00:00
|
|
|
- {path: "{{ matrix_dendrite_nats_storage_path }}", when: true}
|
2021-12-18 11:37:43 +00:00
|
|
|
when: "matrix_dendrite_enabled|bool and item.when"
|
2021-01-24 06:41:11 +00:00
|
|
|
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/dendrite/setup.yml"
|