All checks were successful
Publish Collection / Publish Collection (push) Successful in 11s
13 lines
440 B
YAML
13 lines
440 B
YAML
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2025 Dosh LLC
|
|
---
|
|
- name: Validate required variables defined.
|
|
ansible.builtin.assert:
|
|
that:
|
|
- "WEBMIN_ALLOW | length > 0"
|
|
- "WEBMIN_BIND | length > 0"
|
|
- "WEBMIN_HOST | length > 0"
|
|
- "WEBMIN_PREFIX | length > 0"
|
|
- "WEBMIN_CONFIG_PATH | length > 0"
|
|
- "MINISERV_CONFIG_PATH | length > 0"
|
|
- "XTERM_CONFIG_PATH | length > 0"
|