浏览代码

Update validate_config.yml

Signed-off-by: Suguru Hirahara <did🔑z6MkvVZk1A3KBApWJXv2Ju4H14ErDfRGxh8zxdXSZ4vACDg5>
pull/4943/head
Suguru Hirahara 6 个月前
父节点
当前提交
e6787f9bc2
找不到此签名对应的密钥 GPG 密钥 ID: E4F9743DAB4B7B75
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. +12
    -0
      roles/custom/matrix_playbook_migration/tasks/validate_config.yml

+ 12
- 0
roles/custom/matrix_playbook_migration/tasks/validate_config.yml 查看文件

@@ -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"

正在加载...
取消
保存