From 736f4f8946b1c0960c147ce174f8c0214db1d8d2 Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Wed, 22 Apr 2026 21:29:48 +0900 Subject: [PATCH] Update validate_config.yml Signed-off-by: Suguru Hirahara --- .../tasks/validate_config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/roles/custom/matrix_playbook_migration/tasks/validate_config.yml b/roles/custom/matrix_playbook_migration/tasks/validate_config.yml index c34035122..1293ebcc1 100644 --- a/roles/custom/matrix_playbook_migration/tasks/validate_config.yml +++ b/roles/custom/matrix_playbook_migration/tasks/validate_config.yml @@ -832,6 +832,18 @@ The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_registration_.+', wantlist=True) | join(', ') }} when: "lookup('ansible.builtin.varnames', '^matrix_registration_.+', wantlist=True) | length > 0" +- name: (Deprecation) Catch and report SchildiChat Web variables + ansible.builtin.fail: + msg: |- + The SchildiChat Web service was completely removed from the playbook in February 2026. + + Please remove all `matrix_client_schildichat_*` variables from your configuration file (vars.yml). + + You may also wish to uninstall the component manually. See `docs/configuring-playbook-client-schildichat-web.md` for more information. + + The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_client_schildichat_.+', wantlist=True) | join(', ') }} + when: "lookup('ansible.builtin.varnames', '^matrix_client_schildichat_.+', wantlist=True) | length > 0" + - name: (Deprecation) Catch and report the Sliding Sync proxy variables ansible.builtin.fail: msg: |-