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

35 строки
978 B

  1. # SPDX-FileCopyrightText: 2025 MDAD project contributors
  2. # SPDX-FileCopyrightText: 2025 Slavi Pantaleev
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. - tags:
  7. - setup-all
  8. - setup-conduwuit
  9. - install-all
  10. - install-conduwuit
  11. block:
  12. - when: matrix_conduwuit_enabled | bool
  13. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  14. - when: matrix_conduwuit_enabled | bool
  15. ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
  16. - tags:
  17. - setup-all
  18. - setup-conduwuit
  19. block:
  20. - when: not matrix_conduwuit_enabled | bool
  21. ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"
  22. - tags:
  23. - self-check
  24. block:
  25. - when: matrix_conduwuit_enabled | bool
  26. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  27. - when: matrix_conduwuit_enabled | bool
  28. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"