You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
418 B
17 lines
418 B
---
|
|
|
|
- ansible.builtin.include_role:
|
|
name: custom/matrix-base
|
|
tasks_from: ensure_openssl_installed
|
|
|
|
- name: Ensure Matrix jitsi base path exists
|
|
ansible.builtin.file:
|
|
path: "{{ item.path }}"
|
|
state: directory
|
|
mode: 0750
|
|
owner: "{{ matrix_user_username }}"
|
|
group: "{{ matrix_user_groupname }}"
|
|
with_items:
|
|
- {path: "{{ matrix_jitsi_base_path }}", when: true}
|
|
when: item.when | bool
|