summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-09-07 14:18:23 +0200
committerChristian Poessinger <christian@poessinger.com>2019-09-07 14:18:45 +0200
commita9756cfd49b169e93afe70415ce9155ebf4e5ffa (patch)
treed1aabf33d432f413a47a2d551c773458f9dc7fba /src/conf_mode
parent189ae4f7096abf7ca7100a4a31e038ce9e3e19c2 (diff)
downloadvyos-1x-a9756cfd49b169e93afe70415ce9155ebf4e5ffa.tar.gz
vyos-1x-a9756cfd49b169e93afe70415ce9155ebf4e5ffa.zip
bridge: bonding: minor comment cleanup
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/interface-bonding.py2
-rwxr-xr-xsrc/conf_mode/interface-bridge.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py
index bce8f98fb..cd4c447ac 100755
--- a/src/conf_mode/interface-bonding.py
+++ b/src/conf_mode/interface-bonding.py
@@ -142,7 +142,7 @@ def get_config():
bond['address'] = conf.return_values('address')
# get interface addresses (currently effective) - to determine which
- # address is no longer valid and needs to be removed from the bond
+ # address is no longer valid and needs to be removed
eff_addr = conf.return_effective_values('address')
bond['address_remove'] = list_diff(eff_addr, bond['address'])
diff --git a/src/conf_mode/interface-bridge.py b/src/conf_mode/interface-bridge.py
index 8996fceec..401182a0d 100755
--- a/src/conf_mode/interface-bridge.py
+++ b/src/conf_mode/interface-bridge.py
@@ -71,7 +71,7 @@ def get_config():
bridge['address'] = conf.return_values('address')
# Determine interface addresses (currently effective) - to determine which
- # address is no longer valid and needs to be removed from the bridge
+ # address is no longer valid and needs to be removed
eff_addr = conf.return_effective_values('address')
bridge['address_remove'] = list_diff(eff_addr, bridge['address'])