Fix how interfaces is updated with interface fact

Was broken when handling a bridge or bonded (possibly others) interface
pull/2756/head
Stephen Fromm 12 years ago
parent f36e85efbb
commit 471fa6859e

@ -1057,7 +1057,7 @@ class LinuxNetwork(Network):
iface = words[-1]
if iface != device:
interfaces[iface] = {}
interfaces[iface].update(facts[device])
interfaces[iface].update(interfaces[device])
interfaces[iface]['ipv4'] = {'address': address,
'netmask': netmask,
'network': network}

Loading…
Cancel
Save