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.
 
 

30 line
967 B

  1. # SPDX-FileCopyrightText: 2021 Toni Spets
  2. # SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
  3. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  4. # SPDX-FileCopyrightText: 2025 Suguru Hirahara
  5. #
  6. # SPDX-License-Identifier: AGPL-3.0-or-later
  7. ---
  8. - name: Perform the Zulip bridge installation tasks
  9. when: matrix_zulip_bridge_enabled | bool
  10. tags:
  11. - setup-all
  12. - setup-bridge-zulip
  13. - install-all
  14. - install-bridge-zulip
  15. block:
  16. - name: Validate the Zulip bridge configuration
  17. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  18. - name: Install the Zulip bridge
  19. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  20. - name: Perform the Zulip bridge uninstallation tasks
  21. when: not matrix_zulip_bridge_enabled | bool
  22. tags:
  23. - setup-all
  24. - setup-bridge-zulip
  25. block:
  26. - name: Uninstall the Zulip bridge
  27. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"