matrix-docker-ansible-deploy/roles/custom/matrix-jitsi/tasks/setup_jitsi_base.yml

17 lines
417 B
YAML
Raw Normal View History

2020-03-23 15:19:15 +00:00
---
- ansible.builtin.import_role:
name: custom/matrix-base
tasks_from: ensure_openssl_installed
2022-01-20 05:58:39 +00:00
2020-03-23 15:19:15 +00:00
- name: Ensure Matrix jitsi base path exists
ansible.builtin.file:
2020-03-23 15:19:15 +00:00
path: "{{ item.path }}"
state: directory
mode: 0750
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_groupname }}"
2020-03-23 15:19:15 +00:00
with_items:
- {path: "{{ matrix_jitsi_base_path }}", when: true}
when: item.when | bool