Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

32 Zeilen
816 B

  1. # SPDX-FileCopyrightText: 2024 MDAD Team and contributors
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - tags:
  6. - setup-all
  7. - setup-corporal
  8. - install-all
  9. - install-corporal
  10. block:
  11. - when: matrix_corporal_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  13. - when: matrix_corporal_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_install.yml"
  15. - tags:
  16. - setup-all
  17. - setup-corporal
  18. block:
  19. - when: not matrix_corporal_enabled | bool
  20. ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup_uninstall.yml"
  21. - tags:
  22. - self-check
  23. - self-check-corporal
  24. block:
  25. - when: matrix_corporal_enabled | bool
  26. ansible.builtin.include_tasks: "{{ role_path }}/tasks/self_check.yml"