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

43 строки
1.3 KiB

  1. # SPDX-FileCopyrightText: 2024 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. - tags:
  6. - setup-all
  7. - setup-matrix-authentication-service
  8. - install-all
  9. - install-matrix-authentication-service
  10. block:
  11. - when: matrix_authentication_service_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/validate_config.yml"
  13. - when: matrix_authentication_service_enabled | bool
  14. ansible.builtin.include_tasks: "{{ role_path }}/tasks/install.yml"
  15. - tags:
  16. - matrix-authentication-service-syn2mas
  17. block:
  18. - when: matrix_authentication_service_enabled | bool
  19. ansible.builtin.include_tasks: "{{ role_path }}/tasks/syn2mas.yml"
  20. - tags:
  21. - matrix-authentication-service-mas-cli-doctor
  22. block:
  23. - when: matrix_authentication_service_enabled | bool
  24. ansible.builtin.include_tasks: "{{ role_path }}/tasks/mas_cli_doctor.yml"
  25. - tags:
  26. - register-user
  27. block:
  28. - when: matrix_authentication_service_enabled | bool
  29. ansible.builtin.include_tasks: "{{ role_path }}/tasks/register_user.yml"
  30. - tags:
  31. - setup-all
  32. - setup-matrix-authentication-service
  33. block:
  34. - when: not matrix_authentication_service_enabled | bool
  35. ansible.builtin.include_tasks: "{{ role_path }}/tasks/uninstall.yml"