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.
 
 

34 wiersze
759 B

  1. - import_tasks: "{{ role_path }}/tasks/init.yml"
  2. tags:
  3. - always
  4. - import_tasks: "{{ role_path }}/tasks/setup_synapse_entrypoint.yml"
  5. when: run_setup
  6. tags:
  7. - setup-all
  8. - setup-synapse
  9. - import_tasks: "{{ role_path }}/tasks/import_media_store.yml"
  10. when: run_import_media_store
  11. tags:
  12. - import-media-store
  13. - import_tasks: "{{ role_path }}/tasks/register_user.yml"
  14. when: run_register_user
  15. tags:
  16. - register-user
  17. - import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  18. delegate_to: 127.0.0.1
  19. become: false
  20. when: run_self_check
  21. tags:
  22. - self-check
  23. - import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  24. delegate_to: 127.0.0.1
  25. become: false
  26. when: run_self_check
  27. tags:
  28. - self-check