Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

39 lignes
1.2 KiB

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