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

Merge pull request #2803 from therealprologic/devel

Fixed setup module to accomodate venet interfaces (OpenVZ)
This commit is contained in:
Michael DeHaan 2013-04-28 17:48:09 -07:00
commit d7933522fb

View file

@ -1128,7 +1128,7 @@ class LinuxNetwork(Network):
default_ipv4['network'] = network
default_ipv4['macaddress'] = macaddress
default_ipv4['mtu'] = interfaces[device]['mtu']
default_ipv4['type'] = interfaces[device]['type']
default_ipv4['type'] = interfaces[device].get("type", "unknown")
default_ipv4['alias'] = words[-1]
if not address.startswith('127.'):