1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Correct a variable reference in prior code merge.

This commit is contained in:
Michael DeHaan 2013-04-23 12:02:04 -04:00
parent f36e85efbb
commit c601e53fce

View file

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