fix(runtime): migrate roles to nested system fields

This commit is contained in:
2026-02-11 05:37:18 +01:00
parent db08609acf
commit fcc7c6aeb6
23 changed files with 128 additions and 168 deletions

View File

@@ -1,8 +1,8 @@
---
- name: Cleanup physical install
when: install_type == "physical"
when: system_cfg.type == "physical"
ansible.builtin.include_tasks: physical.yml
- name: Cleanup virtual install
when: install_type == "virtual"
when: system_cfg.type == "virtual"
ansible.builtin.include_tasks: virtual.yml