Quellcode durchsuchen

Update validate_config.yml

Signed-off-by: Suguru Hirahara <did🔑z6MkvVZk1A3KBApWJXv2Ju4H14ErDfRGxh8zxdXSZ4vACDg5>
pull/4943/head
Suguru Hirahara vor 5 Monaten
Ursprung
Commit
e6787f9bc2
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: E4F9743DAB4B7B75
1 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen
  1. +12
    -0
      roles/custom/matrix_playbook_migration/tasks/validate_config.yml

+ 12
- 0
roles/custom/matrix_playbook_migration/tasks/validate_config.yml Datei anzeigen

@@ -831,3 +831,15 @@

The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_sliding_sync_.+', wantlist=True) | join(', ') }}
when: "lookup('ansible.builtin.varnames', '^matrix_sliding_sync_.+', wantlist=True) | length > 0"

- name: (Deprecation) Catch and report the synapse-auto-invite-accept variables
ansible.builtin.fail:
msg: |-
synapse-auto-invite-accept was completely removed from the playbook in February 2026, as the same functionality is available since Synapse v1.109.0.

Please remove all `matrix_synapse_ext_synapse_auto_accept_invite_*` variables from your configuration file (vars.yml).

To enable the native feature, see `docs/configuring-playbook-synapse-auto-accept-invite.md` for more information.

The following variables in your configuration need to be removed: {{ lookup('ansible.builtin.varnames', '^matrix_synapse_ext_synapse_auto_accept_invite_.+', wantlist=True) | join(', ') }}
when: "lookup('ansible.builtin.varnames', '^matrix_synapse_ext_synapse_auto_accept_invite_.+', wantlist=True) | length > 0"

Laden…
Abbrechen
Speichern