Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

46 wiersze
1.1 KiB

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  5. when: run_setup|bool
  6. tags:
  7. - setup-all
  8. - setup-dendrite
  9. - import_tasks: "{{ role_path }}/tasks/setup_dendrite.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-dendrite
  14. - import_tasks: "{{ role_path }}/tasks/register_user.yml"
  15. when: run_dendrite_register_user|bool
  16. tags:
  17. - register-user
  18. - import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  19. delegate_to: 127.0.0.1
  20. become: false
  21. when: run_self_check|bool and matrix_dendrite_enabled|bool
  22. tags:
  23. - self-check
  24. - import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  25. delegate_to: 127.0.0.1
  26. become: false
  27. when: run_self_check|bool and matrix_dendrite_enabled|bool
  28. tags:
  29. - self-check
  30. - import_tasks: "{{ role_path }}/tasks/update_user_password.yml"
  31. when: run_dendrite_update_user_password|bool
  32. tags:
  33. - update-user-password
  34. - name: Mark matrix-dendrite role as executed
  35. set_fact:
  36. matrix_dendrite_role_executed: true
  37. tags:
  38. - always