2022-02-05 20:32:54 +00:00
|
|
|
---
|
|
|
|
|
2019-01-12 15:53:00 +00:00
|
|
|
- import_tasks: "{{ role_path }}/tasks/init.yml"
|
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
2019-01-16 16:05:48 +00:00
|
|
|
- import_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
2021-07-02 17:58:57 +00:00
|
|
|
when: run_setup|bool and matrix_synapse_enabled|bool
|
2019-01-16 16:05:48 +00:00
|
|
|
tags:
|
|
|
|
- setup-all
|
|
|
|
- setup-synapse
|
|
|
|
|
2019-05-21 01:46:49 +00:00
|
|
|
- import_tasks: "{{ role_path }}/tasks/setup_synapse.yml"
|
2019-05-21 15:25:59 +00:00
|
|
|
when: run_setup|bool
|
2019-01-12 15:53:00 +00:00
|
|
|
tags:
|
|
|
|
- setup-all
|
|
|
|
- setup-synapse
|
|
|
|
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/import_media_store.yml"
|
2019-07-08 05:55:08 +00:00
|
|
|
when: run_synapse_import_media_store|bool
|
2019-01-12 15:53:00 +00:00
|
|
|
tags:
|
2020-12-13 23:48:36 +00:00
|
|
|
- import-synapse-media-store
|
2019-01-12 15:53:00 +00:00
|
|
|
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/register_user.yml"
|
2021-12-18 12:40:34 +00:00
|
|
|
when: run_synapse_register_user|bool and matrix_synapse_enabled|bool
|
2019-01-12 15:53:00 +00:00
|
|
|
tags:
|
|
|
|
- register-user
|
|
|
|
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/self_check_client_api.yml"
|
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
become: false
|
2019-05-21 15:25:59 +00:00
|
|
|
when: run_self_check|bool
|
2019-01-12 15:53:00 +00:00
|
|
|
tags:
|
|
|
|
- self-check
|
|
|
|
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/self_check_federation_api.yml"
|
|
|
|
delegate_to: 127.0.0.1
|
|
|
|
become: false
|
2019-05-21 15:25:59 +00:00
|
|
|
when: run_self_check|bool
|
2019-01-12 15:53:00 +00:00
|
|
|
tags:
|
|
|
|
- self-check
|
2019-04-30 13:30:26 +00:00
|
|
|
|
|
|
|
- import_tasks: "{{ role_path }}/tasks/update_user_password.yml"
|
2021-12-18 12:40:34 +00:00
|
|
|
when: run_synapse_update_user_password|bool and matrix_synapse_enabled|bool
|
2019-04-30 13:30:26 +00:00
|
|
|
tags:
|
2019-05-14 14:47:22 +00:00
|
|
|
- update-user-password
|
|
|
|
|
2020-08-21 10:52:16 +00:00
|
|
|
- import_tasks: "{{ role_path }}/tasks/rust-synapse-compress-state/main.yml"
|
|
|
|
when: run_synapse_rust_synapse_compress_state|bool
|
|
|
|
tags:
|
|
|
|
- rust-synapse-compress-state
|
|
|
|
|
2019-05-14 14:47:22 +00:00
|
|
|
- name: Mark matrix-synapse role as executed
|
|
|
|
set_fact:
|
|
|
|
matrix_synapse_role_executed: true
|
|
|
|
tags:
|
2022-02-05 20:32:54 +00:00
|
|
|
- always
|