mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-03 12:44:22 -07:00
Correct a variable reference in prior code merge.
This commit is contained in:
parent
f36e85efbb
commit
c601e53fce
1 changed files with 1 additions and 1 deletions
|
@ -1057,7 +1057,7 @@ class LinuxNetwork(Network):
|
||||||
iface = words[-1]
|
iface = words[-1]
|
||||||
if iface != device:
|
if iface != device:
|
||||||
interfaces[iface] = {}
|
interfaces[iface] = {}
|
||||||
interfaces[iface].update(facts[device])
|
interfaces[iface].update(self.facts[device])
|
||||||
interfaces[iface]['ipv4'] = {'address': address,
|
interfaces[iface]['ipv4'] = {'address': address,
|
||||||
'netmask': netmask,
|
'netmask': netmask,
|
||||||
'network': network}
|
'network': network}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue