add module param to Network & sub-classes

add module param to Network and sub-classes of Network, so that ansible 1.5.1 changes to LinuxNetwork apply to all Network classes.
pull/6448/head
Ryan 10 years ago committed by Michael DeHaan
parent c8db3c2db9
commit e4805fe411

@ -1415,7 +1415,8 @@ class Network(Facts):
subclass = sc
return super(cls, subclass).__new__(subclass, *arguments, **keyword)
def __init__(self):
def __init__(self, module):
self.module = module
Facts.__init__(self)
def populate(self):
@ -1432,11 +1433,10 @@ class LinuxNetwork(Network):
platform = 'Linux'
def __init__(self, module):
self.module = module
Network.__init__(self)
Network.__init__(self, module)
def populate(self):
ip_path = module.get_bin_path('ip')
ip_path = self.module.get_bin_path('ip')
if ip_path is None:
return self.facts
default_ipv4, default_ipv6 = self.get_default_interfaces(ip_path)
@ -1652,8 +1652,8 @@ class GenericBsdIfconfigNetwork(Network):
"""
platform = 'Generic_BSD_Ifconfig'
def __init__(self):
Network.__init__(self)
def __init__(self, module):
Network.__init__(self, module)
def populate(self):

Loading…
Cancel
Save