Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

30 lignes
750 B

  1. ---
  2. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  3. tags:
  4. - setup-all
  5. # This needs to always run, because it populates `matrix_user_uid` and `matrix_user_gid`,
  6. # which are required by many other roles.
  7. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_user.yml"
  8. when: run_setup | bool
  9. tags:
  10. - always
  11. - setup-system-user
  12. - common
  13. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
  14. when: run_setup | bool
  15. tags:
  16. - setup-all
  17. - common
  18. - ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
  19. when: run_setup | bool
  20. tags:
  21. - setup-all
  22. - setup-ma1sd
  23. - setup-synapse
  24. - setup-dendrite
  25. - setup-nginx-proxy