Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

63 líneas
1.7 KiB

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