Remove Go Skype Bridge

Reuse c399992542

Signed-off-by: Suguru Hirahara <did🔑z6MkvVZk1A3KBApWJXv2Ju4H14ErDfRGxh8zxdXSZ4vACDg5>
This commit is contained in:
Suguru Hirahara
2025-11-04 15:01:54 +09:00
committed by Slavi Pantaleev
parent 7862fd7cdd
commit a406a57f01
17 changed files with 36 additions and 819 deletions

View File

@@ -558,3 +558,15 @@
The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_email2matrix_.+', wantlist=True) | join(', ') }}
when: "lookup('ansible.builtin.varnames', '^matrix_email2matrix_.+', wantlist=True) | length > 0"
- name: (Deprecation) Catch and report go-skype-bridge variables
ansible.builtin.fail:
msg: |-
The go-skype-bridge was completely removed from the playbook in November 2025, as Skype has been discontinued since May 2025.
Please remove all `matrix_go_skype_bridge_*` variables from your configuration file (vars.yml).
You may also wish to uninstall the bridge manually. See `docs/configuring-playbook-bridge-go-skype-bridge.md` for more information.
The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_go_skype_bridge_.+', wantlist=True) | join(', ') }}
when: "lookup('ansible.builtin.varnames', '^matrix_go_skype_bridge_.+', wantlist=True) | length > 0"