refactor(bootstrap,configuration): rename validation-only _normalize.yml files

This commit is contained in:
2026-02-22 03:06:34 +01:00
parent 2f3fce42b5
commit 909a0a6021
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
---
# Resolve the OS-specific variable namespace and task file for the bootstrap role.
- name: Validate OS is supported for bootstrap
ansible.builtin.assert:
that:
- os is defined
- os in bootstrap_os_task_map
fail_msg: >-
Unsupported OS '{{ os | default("undefined") }}' for bootstrap.
Supported: {{ bootstrap_os_task_map | dict2items | map(attribute='key') | join(', ') }}
quiet: true