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.
 
 

40 lignes
882 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