diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-07-21 21:57:26 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-07-25 15:36:44 +0200 |
commit | 0e2304e0ec903a8183307b51f275097cd87a6995 (patch) | |
tree | 2f27453677a49649bbfb97ad8bbd081f685a3c01 /python/vyos/ifconfig/interface.py | |
parent | c9ba8952ad7c373d633516933ddb97e178e339c8 (diff) | |
download | vyos-1x-0e2304e0ec903a8183307b51f275097cd87a6995.tar.gz vyos-1x-0e2304e0ec903a8183307b51f275097cd87a6995.zip |
ifconfig: T2653: move bridge member check to base class
This test is reused by a lot of instances and thus must be moved to the
base class.
Diffstat (limited to 'python/vyos/ifconfig/interface.py')
-rw-r--r-- | python/vyos/ifconfig/interface.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/vyos/ifconfig/interface.py b/python/vyos/ifconfig/interface.py index ea770af23..2d2017b7a 100644 --- a/python/vyos/ifconfig/interface.py +++ b/python/vyos/ifconfig/interface.py @@ -946,6 +946,10 @@ class Interface(Control): for addr in tmp: self.add_ipv6_eui64_address(addr) + # re-add ourselves to any bridge we might have fallen out of + if 'is_bridge_member' in config: + bridge = config.get('is_bridge_member') + self.add_to_bridge(bridge) # Interface administrative state state = 'down' if 'disable' in config else 'up' |