2022-02-05 20:32:54 +00:00
|
|
|
---
|
2019-06-26 07:30:51 +00:00
|
|
|
# If the matrix-synapse role is not used, `matrix_synapse_role_executed` won't exist.
|
|
|
|
# We don't want to fail in such cases.
|
|
|
|
- name: Fail if matrix-synapse role already executed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.fail:
|
2019-06-26 07:30:51 +00:00
|
|
|
msg: >-
|
|
|
|
The matrix-bridge-appservice-discord role needs to execute before the matrix-synapse role.
|
2022-07-18 08:22:05 +00:00
|
|
|
when: "matrix_appservice_discord_enabled and matrix_synapse_role_executed | default(False)"
|
2019-06-26 07:30:51 +00:00
|
|
|
|
2022-07-18 07:39:08 +00:00
|
|
|
- ansible.builtin.set_fact:
|
2021-01-14 21:02:10 +00:00
|
|
|
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-appservice-discord.service'] }}"
|
2022-07-18 08:22:05 +00:00
|
|
|
when: matrix_appservice_discord_enabled | bool
|
2019-06-14 07:19:52 +00:00
|
|
|
|
|
|
|
# If the matrix-synapse role is not used, these variables may not exist.
|
2022-07-18 07:39:08 +00:00
|
|
|
- ansible.builtin.set_fact:
|
2019-06-14 07:19:52 +00:00
|
|
|
matrix_synapse_container_extra_arguments: >
|
2022-05-18 12:43:39 +00:00
|
|
|
{{
|
2022-07-18 08:22:05 +00:00
|
|
|
matrix_synapse_container_extra_arguments | default([])
|
2022-05-18 12:43:39 +00:00
|
|
|
+
|
|
|
|
["--mount type=bind,src={{ matrix_appservice_discord_config_path }}/registration.yaml,dst=/matrix-appservice-discord-registration.yaml,ro"]
|
|
|
|
}}
|
2019-06-14 07:19:52 +00:00
|
|
|
|
|
|
|
matrix_synapse_app_service_config_files: >
|
2022-05-18 12:43:39 +00:00
|
|
|
{{
|
2022-07-18 08:22:05 +00:00
|
|
|
matrix_synapse_app_service_config_files | default([])
|
2022-05-18 12:43:39 +00:00
|
|
|
+
|
|
|
|
["/matrix-appservice-discord-registration.yaml"]
|
|
|
|
}}
|
2022-07-18 08:22:05 +00:00
|
|
|
when: matrix_appservice_discord_enabled | bool
|