Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

28 líneas
806 B

  1. # SPDX-FileCopyrightText: 2023 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2025 Suguru Hirahara
  3. #
  4. # SPDX-License-Identifier: AGPL-3.0-or-later
  5. ---
  6. - name: Perform Matrix.to installation tasks
  7. when: matrix_matrixto_enabled | bool
  8. tags:
  9. - setup-all
  10. - setup-matrixto
  11. - install-all
  12. - install-matrixto
  13. block:
  14. - name: Validate Matrix.to configuration
  15. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  16. - name: Install Matrix.to
  17. ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
  18. - name: Perform Matrix.to uninstallation tasks
  19. when: not matrix_matrixto_enabled | bool
  20. tags:
  21. - setup-all
  22. - setup-matrixto
  23. block:
  24. - name: Uninstall Matrix.to
  25. ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"