fix(configuration): omit interface-name when not explicitly provided to avoid predictable naming mismatch

This commit is contained in:
2026-02-21 07:56:21 +01:00
parent b1d2294d63
commit b84688f1d6
3 changed files with 5 additions and 7 deletions

View File

@@ -2,12 +2,7 @@
- name: Copy NetworkManager keyfile per interface
vars:
configuration_iface: "{{ item }}"
configuration_iface_name: >-
{{
item.name
if (item.name | default('') | string | length) > 0
else (configuration_detected_interfaces[idx] | default('eth' ~ idx))
}}
configuration_iface_name: "{{ item.name | default('') }}"
configuration_net_uuid: "{{ ('LAN-' ~ idx ~ '-' ~ hostname) | ansible.builtin.to_uuid }}"
ansible.builtin.template:
src: network.j2