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

addons: bond: set proto-up on slaves if bond used to be a clag bond or es-bond

Signed-off-by: Julien Fortin <julien@cumulusnetworks.com>
This commit is contained in:
Julien Fortin
2020-09-09 14:48:58 +02:00
parent d0d657ed15
commit d079ad3fe8

View File

@@ -376,6 +376,10 @@ class bond(Addon, moduleBase):
if runningslaves:
for s in runningslaves:
# make sure that slaves are not in protodown since we are not in the clag-bond or es-bond case
if not clag_bond and not ifaceobj.link_privflags & ifaceLinkPrivFlags.ES_BOND and self.cache.get_link_protodown(s):
self.netlink.link_set_protodown_off(s)
if s not in slaves:
self.sysfs.bond_remove_slave(ifaceobj.name, s)
if clag_bond: