summaryrefslogtreecommitdiffstats
path: root/network.py
diff options
context:
space:
mode:
Diffstat (limited to 'network.py')
-rw-r--r--network.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/network.py b/network.py
index 31a13d3b6..e81e7d81b 100644
--- a/network.py
+++ b/network.py
@@ -229,6 +229,9 @@ class Network:
if desc is not None and len(desc) > 0:
self.netdevices[device].set(("desc", desc))
+ # hwaddr for qeth doesn't make sense (#135023)
+ if netdev.driver == "qeth":
+ continue
# add hwaddr
hwaddr = isys.getMacAddress(device)
if hwaddr and hwaddr != "00:00:00:00:00:00":