mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 10:47:32 +01:00
1722e4bd83
Since upgrading mautrix-slack (and pinning to v0.1.0) in e4b54c37fe
,
we expect double-puppeting to require the new appservice double-puppeting method.
This commit switches the mautrix-slack bridge to it.
34 lines
2.1 KiB
YAML
34 lines
2.1 KiB
YAML
---
|
|
|
|
- name: Fail if required mautrix-slack settings not defined
|
|
ansible.builtin.fail:
|
|
msg: >-
|
|
You need to define a required configuration setting (`{{ item.name }}`).
|
|
when: "item.when | bool and vars[item.name] == ''"
|
|
with_items:
|
|
- {'name': 'matrix_mautrix_slack_appservice_token', when: true}
|
|
- {'name': 'matrix_mautrix_slack_homeserver_address', when: true}
|
|
- {'name': 'matrix_mautrix_slack_homeserver_token', when: true}
|
|
- {'name': 'matrix_mautrix_slack_database_hostname', when: "{{ matrix_mautrix_slack_database_engine == 'postgres' }}"}
|
|
- {'name': 'matrix_mautrix_slack_container_network', when: true}
|
|
|
|
- name: Fail if appservice-slack and mautrix-slack have conflicting bot usernames
|
|
when: matrix_appservice_slack_enabled | default(False) | bool and matrix_mautrix_slack_appservice_bot_username == matrix_appservice_slack_bot_name | default ('')
|
|
ansible.builtin.fail:
|
|
msg: |
|
|
The appservice-slack and mautrix-slack components are both enabled and use the same bot username ({{ matrix_mautrix_slack_appservice_bot_username }}), as per their default configuration, which causes a conflcit.
|
|
To resolve the conflict, make one of these components use a different username.
|
|
Consider either changing `matrix_mautrix_slack_appservice_bot_username` (the bot username for the mautrix-slack component) or `matrix_appservice_slack_bot_name` (the bot username for the appservice-slack component).
|
|
We recommend that you change the username for the newly-added (and yet unused) component.
|
|
|
|
- name: (Deprecation) Catch and report renamed settings
|
|
ansible.builtin.fail:
|
|
msg: >-
|
|
Your configuration contains a variable, which now has a different name.
|
|
Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
|
|
when: "item.old in vars"
|
|
with_items:
|
|
- {'old': 'matrix_mautrix_slack_login_shared_secret', 'new': '<removed>'}
|
|
- {'old': 'matrix_mautrix_slack_bridge_login_shared_secret_map', 'new': '<superseded by matrix_mautrix_slack_double_puppet_secrets>'}
|
|
- {'old': 'matrix_mautrix_slack_bridge_double_puppet_server_map', 'new': '<removed>'}
|