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.
 
 

58 wiersze
1.4 KiB

  1. ---
  2. - import_tasks: "{{ role_path }}/tasks/init.yml"
  3. tags:
  4. - always
  5. - import_tasks: "{{ role_path }}/tasks/validate_config.yml"
  6. when: run_setup|bool and matrix_synapse_enabled|bool
  7. tags:
  8. - setup-all
  9. - setup-synapse
  10. - import_tasks: "{{ role_path }}/tasks/setup_synapse.yml"
  11. when: run_setup|bool
  12. tags:
  13. - setup-all
  14. - setup-synapse
  15. - import_tasks: "{{ role_path }}/tasks/import_media_store.yml"
  16. when: run_synapse_import_media_store|bool
  17. tags:
  18. - import-synapse-media-store
  19. - import_tasks: "{{ role_path }}/tasks/register_user.yml"
  20. when: run_synapse_register_user|bool and matrix_synapse_enabled|bool
  21. tags:
  22. - register-user
  23. - import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
  24. delegate_to: 127.0.0.1
  25. become: false
  26. when: run_self_check|bool
  27. tags:
  28. - self-check
  29. - import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
  30. delegate_to: 127.0.0.1
  31. become: false
  32. when: run_self_check|bool
  33. tags:
  34. - self-check
  35. - import_tasks: "{{ role_path }}/tasks/update_user_password.yml"
  36. when: run_synapse_update_user_password|bool and matrix_synapse_enabled|bool
  37. tags:
  38. - update-user-password
  39. - import_tasks: "{{ role_path }}/tasks/rust-synapse-compress-state/main.yml"
  40. when: run_synapse_rust_synapse_compress_state|bool
  41. tags:
  42. - rust-synapse-compress-state
  43. - name: Mark matrix-synapse role as executed
  44. set_fact:
  45. matrix_synapse_role_executed: true
  46. tags:
  47. - always