Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

34 lines
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