Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

17 linhas
418 B

  1. ---
  2. - ansible.builtin.include_role:
  3. name: custom/matrix-base
  4. tasks_from: ensure_openssl_installed
  5. - name: Ensure Matrix jitsi base path exists
  6. ansible.builtin.file:
  7. path: "{{ item.path }}"
  8. state: directory
  9. mode: 0750
  10. owner: "{{ matrix_user_username }}"
  11. group: "{{ matrix_user_groupname }}"
  12. with_items:
  13. - {path: "{{ matrix_jitsi_base_path }}", when: true}
  14. when: item.when | bool