17 lines
418 B
YAML
Raw Normal View History

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