mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-14 14:32:51 +01:00
76fec0b863
Related to: - https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/3479 - https://github.com/mautrix/signal/releases/tag/v0.7.0 - https://mau.fi/blog/2024-08-mautrix-release/ It seems like the new version does not support a `/metrics` endpoint. We skip keep the Ansible variables, but they're not doing anything. Closes https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/3481
27 lines
1.5 KiB
YAML
27 lines
1.5 KiB
YAML
---
|
|
|
|
- name: Fail if required mautrix-signal 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_signal_appservice_token', when: true}
|
|
- {'name': 'matrix_mautrix_signal_homeserver_address', when: true}
|
|
- {'name': 'matrix_mautrix_signal_homeserver_token', when: true}
|
|
- {'name': 'matrix_mautrix_signal_database_hostname', when: "{{ matrix_mautrix_signal_database_engine == 'postgres' }}"}
|
|
- {'name': 'matrix_mautrix_signal_container_network', when: true}
|
|
- {'name': 'matrix_mautrix_signal_metrics_proxying_hostname', when: "{{ matrix_mautrix_signal_metrics_proxying_enabled }}"}
|
|
- {'name': 'matrix_mautrix_signal_metrics_proxying_path_prefix', when: "{{ matrix_mautrix_signal_metrics_proxying_enabled }}"}
|
|
|
|
- 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_signal_log_level', 'new': 'matrix_mautrix_signal_logging_level'}
|
|
- {'old': 'matrix_mautrix_signal_bridge_restricted_rooms', 'new': '<removed>'}
|
|
- {'old': 'matrix_mautrix_signal_bridge_note_to_self_avatar', 'new': 'matrix_mautrix_signal_network_note_to_self_avatar'}
|