瀏覽代碼

Update validate_config.yml

Signed-off-by: Suguru Hirahara <did🔑z6MkvVZk1A3KBApWJXv2Ju4H14ErDfRGxh8zxdXSZ4vACDg5>
pull/4931/head
Suguru Hirahara 6 月之前
父節點
當前提交
ae21c5f629
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: E4F9743DAB4B7B75
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      roles/custom/matrix_playbook_migration/tasks/validate_config.yml

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

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

- name: (Deprecation) Catch and report matrix-appservice-slack variables
ansible.builtin.fail:
msg: |-
matrix-appservice-slack was completely removed from the playbook in February 2026.

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

You may also wish to uninstall the bridge manually. See `docs/configuring-playbook-bridge-appservice-slack.md` for more information.

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

Bridging to Slack can also happen via mautrix-slack, supported by the playbook. See `docs/configuring-playbook-bridge-mautrix-slack.md` for more information.
when: "lookup('ansible.builtin.varnames', '^matrix_appservice_slack_.+', wantlist=True) | length > 0"

- name: (Deprecation) Catch and report matrix-appservice-webhooks variables
ansible.builtin.fail:
msg: |-


Loading…
取消
儲存