mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-01-08 17:27:16 +01:00
8e63f12fbe
Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
13 lines
369 B
YAML
13 lines
369 B
YAML
# SPDX-FileCopyrightText: 2024 MDAD Team and contributors
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
|
|
- name: Fail if required variables are undefined
|
|
ansible.builtin.fail:
|
|
msg: "The `{{ item }}` variable must be defined and have a non-null value."
|
|
with_items:
|
|
- "matrix_pantalaimon_homeserver_url"
|
|
when: "vars[item] == '' or vars[item] is none"
|