Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

40 строки
918 B

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