Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
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"