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.
 
 

40 lignes
984 B

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