2021-10-12 13:45:04 +02:00
|
|
|
---
|
|
|
|
|
2022-11-27 08:16:18 +01:00
|
|
|
- name: Fail if required mautrix-googlechat settings not defined
|
2022-07-18 09:39:08 +02:00
|
|
|
ansible.builtin.fail:
|
2021-10-12 13:45:04 +02:00
|
|
|
msg: >-
|
2022-11-27 08:16:18 +01:00
|
|
|
You need to define a required configuration setting (`{{ item.name }}`).
|
|
|
|
when: "item.when | bool and vars[item.name] == ''"
|
2021-10-12 13:45:04 +02:00
|
|
|
with_items:
|
2022-11-27 08:16:18 +01:00
|
|
|
- {'name': 'matrix_mautrix_googlechat_public_endpoint', when: true}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_appservice_token', when: true}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_homeserver_token', when: true}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_database_hostname', when: "{{ matrix_mautrix_googlechat_database_engine == 'postgres' }}"}
|
2024-01-07 14:22:22 +01:00
|
|
|
- {'name': 'matrix_mautrix_googlechat_container_network', when: true}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_metrics_proxying_hostname', when: "{{ matrix_mautrix_googlechat_metrics_enabled }}"}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_metrics_proxying_path_prefix', when: "{{ matrix_mautrix_googlechat_metrics_enabled }}"}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_container_labels_public_endpoint_hostname', when: "{{ matrix_mautrix_googlechat_container_labels_public_endpoint_enabled }}"}
|
|
|
|
- {'name': 'matrix_mautrix_googlechat_container_labels_public_endpoint_path_prefix', when: "{{ matrix_mautrix_googlechat_container_labels_public_endpoint_enabled }}"}
|