summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-12-17 08:32:44 +0100
committerChristian Poessinger <christian@poessinger.com>2022-12-17 08:32:47 +0100
commitfe80ae5533bebb863a39861a2c27a0b07f84845e (patch)
tree16e7d14ea46e9a721d845f8651b6cbe094e61c0b /src/conf_mode
parent8637b02bb60baf499fc63696c28aa1af3559c308 (diff)
downloadvyos-1x-fe80ae5533bebb863a39861a2c27a0b07f84845e.tar.gz
vyos-1x-fe80ae5533bebb863a39861a2c27a0b07f84845e.zip
bonding: T4878: use more is_node_changed() over leaf_node_changed()
The implementation of is_node_changed() is less error prone and should always be favoured.
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/interfaces-bonding.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/conf_mode/interfaces-bonding.py b/src/conf_mode/interfaces-bonding.py
index b883ebef2..9936620c8 100755
--- a/src/conf_mode/interfaces-bonding.py
+++ b/src/conf_mode/interfaces-bonding.py
@@ -21,6 +21,7 @@ from netifaces import interfaces
from vyos.config import Config
from vyos.configdict import get_interface_dict
+from vyos.configdict import is_node_changed
from vyos.configdict import leaf_node_changed
from vyos.configdict import is_member
from vyos.configdict import is_source_interface
@@ -81,10 +82,10 @@ def get_config(config=None):
if 'mode' in bond:
bond['mode'] = get_bond_mode(bond['mode'])
- tmp = leaf_node_changed(conf, base + [ifname, 'mode'])
+ tmp = is_node_changed(conf, base + [ifname, 'mode'])
if tmp: bond['shutdown_required'] = {}
- tmp = leaf_node_changed(conf, base + [ifname, 'lacp-rate'])
+ tmp = is_node_changed(conf, base + [ifname, 'lacp-rate'])
if tmp: bond['shutdown_required'] = {}
# determine which members have been removed