Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

51 строка
1.2 KiB

  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|bool
  6. tags:
  7. - setup-all
  8. - setup-synapse
  9. - import_tasks: "{{ role_path }}/tasks/setup_synapse.yml"
  10. when: run_setup|bool
  11. tags:
  12. - setup-all
  13. - setup-synapse
  14. - import_tasks: "{{ role_path }}/tasks/import_media_store.yml"
  15. when: run_synapse_import_media_store|bool
  16. tags:
  17. - import-media-store
  18. - import_tasks: "{{ role_path }}/tasks/register_user.yml"
  19. when: run_synapse_register_user|bool
  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|bool
  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|bool
  32. tags:
  33. - self-check
  34. - import_tasks: "{{ role_path }}/tasks/update_user_password.yml"
  35. when: run_synapse_update_user_password|bool
  36. tags:
  37. - update-user-password
  38. - name: Mark matrix-synapse role as executed
  39. set_fact:
  40. matrix_synapse_role_executed: true
  41. tags:
  42. - always