Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

40 wiersze
1.1 KiB

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - tags:
  6. - setup-all
  7. - setup-dendrite
  8. - install-all
  9. - install-dendrite
  10. block:
  11. - when: matrix_dendrite_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  13. - when: matrix_dendrite_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  15. - tags:
  16. - setup-all
  17. - setup-dendrite
  18. block:
  19. - when: not matrix_dendrite_enabled | bool
  20. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  21. - tags:
  22. - self-check
  23. block:
  24. - when: matrix_dendrite_enabled | bool
  25. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  26. - when: matrix_dendrite_enabled | bool
  27. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  28. - tags:
  29. - register-user
  30. block:
  31. - when: matrix_dendrite_enabled | bool
  32. ansible.builtin.include_tasks: "{{ role_path }}/tasks/register_user.yml"