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

34 строки
982 B

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