4d881477a3
We need this to control whether `('matrix-' + matrix_homeserver_implementation + '.service')` would get injected into `devture_systemd_service_manager_services_list_auto`
30 lines
750 B
YAML
30 lines
750 B
YAML
---
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/validate_config.yml"
|
|
tags:
|
|
- setup-all
|
|
|
|
# This needs to always run, because it populates `matrix_user_uid` and `matrix_user_gid`,
|
|
# which are required by many other roles.
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_user.yml"
|
|
when: run_setup | bool
|
|
tags:
|
|
- always
|
|
- setup-system-user
|
|
- common
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_matrix_base.yml"
|
|
when: run_setup | bool
|
|
tags:
|
|
- setup-all
|
|
- common
|
|
|
|
- ansible.builtin.import_tasks: "{{ role_path }}/tasks/setup_well_known.yml"
|
|
when: run_setup | bool
|
|
tags:
|
|
- setup-all
|
|
- setup-ma1sd
|
|
- setup-synapse
|
|
- setup-dendrite
|
|
- setup-nginx-proxy
|