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.
 
 

43 lignes
1.2 KiB

  1. # SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2022 Aaron Raimist
  3. # SPDX-FileCopyrightText: 2022 Jip J. Dekker
  4. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  5. #
  6. # SPDX-License-Identifier: AGPL-3.0-or-later
  7. ---
  8. - tags:
  9. - setup-all
  10. - setup-dendrite
  11. - install-all
  12. - install-dendrite
  13. block:
  14. - when: matrix_dendrite_enabled | bool
  15. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  16. - when: matrix_dendrite_enabled | bool
  17. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  18. - tags:
  19. - setup-all
  20. - setup-dendrite
  21. block:
  22. - when: not matrix_dendrite_enabled | bool
  23. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  24. - tags:
  25. - self-check
  26. block:
  27. - when: matrix_dendrite_enabled | bool
  28. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  29. - when: matrix_dendrite_enabled | bool
  30. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  31. - tags:
  32. - register-user
  33. block:
  34. - when: matrix_dendrite_enabled | bool
  35. ansible.builtin.include_tasks: "{{ role_path }}/tasks/register_user.yml"