From 085e16abe920951f4473f955bb599267c0418a50 Mon Sep 17 00:00:00 2001 From: Sandwich Date: Mon, 5 Jan 2026 18:22:18 +0100 Subject: [PATCH] fix(network): Removes hardcoded MAC-Address from NetworkManager config This fixes an issue that in some virtual environments the NICs MAC-Address gets changes and the config no longer applies. --- roles/configuration/templates/network.j2 | 3 --- 1 file changed, 3 deletions(-) diff --git a/roles/configuration/templates/network.j2 b/roles/configuration/templates/network.j2 index 1595ab0..2b36ee3 100644 --- a/roles/configuration/templates/network.j2 +++ b/roles/configuration/templates/network.j2 @@ -3,9 +3,6 @@ id=LAN uuid={{ configuration_net_uuid }} type=ethernet -[ethernet] -mac-address={{ configuration_net_mac }} - [ipv4] {% set dns_value = vm_dns if vm_dns is defined else '' %} {% set dns_list_raw = dns_value if dns_value is iterable and dns_value is not string else dns_value.split(',') %}