ansible-webmin/roles/configure_subpath/tasks/validate-config.yml
GregoryDosh 3596dcf04c
All checks were successful
Publish Collection / Publish Collection (push) Successful in 11s
feat: Initial Release 🌈🐻
2025-11-18 18:29:36 -06:00

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"