From c0ca8adee0727eeee8d93b0a127a805786f05c2c Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Mon, 1 Jun 2026 15:03:44 -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..e8bab89fb 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 June 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: |-