1
0
mirror of https://github.com/CumulusNetworks/ifupdown2.git synced 2024-05-06 15:54:50 +00:00

ifupdownmain: missing return statement and fixing 'network down' error checking

Ticket:
Reviewed By: Roopa, Nikhil G

Signed-off-by: Julien Fortin <julien@cumulusnetworks.com>
This commit is contained in:
Julien Fortin
2016-10-10 15:22:30 +02:00
parent f0c1c7205f
commit a5bd56f269

View File

@@ -306,7 +306,7 @@ class ifupdownMain(ifupdownBase):
# is a LINK_SLAVE of a bridge (in other words the bond is
# part of a bridge) which is not up yet
if self._link_master_slave:
if 'Network is down':
if 'Network is down' in errorstr:
return True
return False
@@ -318,7 +318,7 @@ class ifupdownMain(ifupdownBase):
if self.flags.STATEMANAGER_ENABLE:
return self.statemanager.get_ifaceobjs(ifacename)
else:
None
return None
def get_ifaceobj_first(self, ifacename):
ifaceobjs = self.get_ifaceobjs(ifacename)