mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-03-25 22:05:30 +01:00
17 lines
585 B
YAML
17 lines
585 B
YAML
# SPDX-FileCopyrightText: 2022 MDAD project contributors
|
|
# SPDX-FileCopyrightText: 2024 wjbeckett
|
|
# SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Fail if required Element Call settings are not defined
|
|
ansible.builtin.fail:
|
|
msg: >
|
|
You need to define a required configuration setting (`{{ item.name }}`).
|
|
when: "item.when | bool and vars[item.name] | length == 0"
|
|
with_items:
|
|
- {'name': 'matrix_element_call_base_path', when: true}
|
|
- {'name': 'matrix_element_call_container_network', when: true}
|