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

addons: vrf: fix vrf-helper args at boot

Ticket:
Reviewed By: dsa
Testing Done: tested boot with vrf devs and checking vrf-helper args

Call it with the 'boot' arg at boot:
/usr/lib/vrf/vrf-helper create blue 1002 boot

Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
This commit is contained in:
Roopa Prabhu
2016-04-23 09:12:36 -07:00
parent 6e16e5ae90
commit c4e05f9f8c

View File

@@ -535,9 +535,12 @@ class vrf(moduleBase):
return vrf_table
def _up_vrf_helper(self, ifaceobj, vrf_table):
mode = ""
if ifupdownflags.flags.PERFMODE:
mode = "boot"
if self.vrf_helper:
self.exec_command('%s create %s %s' %(self.vrf_helper,
ifaceobj.name, vrf_table))
self.exec_command('%s create %s %s %s' %(self.vrf_helper,
ifaceobj.name, vrf_table, mode))
def _up_vrf_dev(self, ifaceobj, vrf_table, add_slaves=True,
ifaceobj_getfunc=None):
@@ -658,9 +661,12 @@ class vrf(moduleBase):
self.log_error(str(e))
def _down_vrf_helper(self, ifaceobj, vrf_table):
mode = ""
if ifupdownflags.flags.PERFMODE:
mode = "boot"
if self.vrf_helper:
self.exec_command('%s delete %s %s' %(self.vrf_helper,
ifaceobj.name, vrf_table))
self.exec_command('%s delete %s %s %s' %(self.vrf_helper,
ifaceobj.name, vrf_table, mode))
def _down_vrf_dev(self, ifaceobj, vrf_table, ifaceobj_getfunc=None):