Matrix Docker Ansible eploy
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - 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
|