From 2c57bd3b90b3febe6ecce3cd73a5fc434e21780d Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Fri, 10 Jul 2026 02:06:27 -0400 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 a8fd11964..5ad2736fa 100644 --- a/roles/custom/matrix_playbook_migration/tasks/validate_config.yml +++ b/roles/custom/matrix_playbook_migration/tasks/validate_config.yml @@ -711,6 +711,18 @@ The following variables in your configuration need to be renamed: {{ lookup('ansible.builtin.varnames', '^matrix_dynamic_dns_.+', wantlist=True) | join(', ') }} when: "lookup('ansible.builtin.varnames', '^matrix_dynamic_dns_.+', wantlist=True) | length > 0" +- name: (Deprecation) Catch and report matrix-registration-bot variables + ansible.builtin.fail: + msg: |- + matrix-registration-bot was completely removed from the playbook in July 2026. + + Please remove all `matrix_bot_matrix_registration_bot_*` variables from your configuration file (vars.yml). + + You may also wish to uninstall the component manually. See `docs/configuring-playbook-bot-matrix-registration-bot.md` for more information. + + The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_bot_matrix_registration_bot_.+', wantlist=True) | join(', ') }} + when: "lookup('ansible.builtin.varnames', '^matrix_bot_matrix_registration_bot_.+', wantlist=True) | length > 0" + - name: (Deprecation) Catch and report matrix-ldap-registration-proxy variables ansible.builtin.fail: msg: |-