You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
875 B
22 lines
875 B
2 years ago
|
---
|
||
2 years ago
|
- ansible.builtin.set_fact:
|
||
2 years ago
|
matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-go-skype-bridge.service'] }}"
|
||
2 years ago
|
when: matrix_go_skype_bridge_enabled | bool
|
||
2 years ago
|
|
||
|
# If the matrix-synapse role is not used, these variables may not exist.
|
||
2 years ago
|
- ansible.builtin.set_fact:
|
||
2 years ago
|
matrix_homeserver_container_runtime_injected_arguments: >
|
||
2 years ago
|
{{
|
||
2 years ago
|
matrix_homeserver_container_runtime_injected_arguments | default([])
|
||
2 years ago
|
+
|
||
|
["--mount type=bind,src={{ matrix_go_skype_bridge_config_path }}/registration.yaml,dst=/matrix-go-skype-bridge-registration.yaml,ro"]
|
||
|
}}
|
||
|
|
||
2 years ago
|
matrix_homeserver_app_service_runtime_injected_config_files: >
|
||
2 years ago
|
{{
|
||
2 years ago
|
matrix_homeserver_app_service_runtime_injected_config_files | default([])
|
||
2 years ago
|
+
|
||
|
["/matrix-go-skype-bridge-registration.yaml"]
|
||
|
}}
|
||
2 years ago
|
when: matrix_go_skype_bridge_enabled | bool
|