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.
 
 

44 wiersze
1015 B

  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
  6. tags:
  7. - setup-all
  8. - setup-synapse
  9. - import_tasks: "{{ role_path }}/tasks/setup_synapse_entrypoint.yml"
  10. when: run_setup
  11. tags:
  12. - setup-all
  13. - setup-synapse
  14. - import_tasks: "{{ role_path }}/tasks/import_media_store.yml"
  15. when: run_import_media_store
  16. tags:
  17. - import-media-store
  18. - import_tasks: "{{ role_path }}/tasks/register_user.yml"
  19. when: run_register_user
  20. tags:
  21. - register-user
  22. - import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  23. delegate_to: 127.0.0.1
  24. become: false
  25. when: run_self_check
  26. tags:
  27. - self-check
  28. - import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  29. delegate_to: 127.0.0.1
  30. become: false
  31. when: run_self_check
  32. tags:
  33. - self-check
  34. - import_tasks: "{{ role_path }}/tasks/update_user_password.yml"
  35. when: run_update_user_password
  36. tags:
  37. - update-user-password