summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-08-27 19:50:02 +0200
committerChristian Poessinger <christian@poessinger.com>2019-08-27 19:50:02 +0200
commit6cbf8db38ddca0c9e3b9cf1a52fc646cc2d5febb (patch)
tree5ea45b49715128cf21f84d549513c8902b6c50af /src/conf_mode
parent1ace4a35237889bceff7309df0c687bf32ab89a9 (diff)
parent34adc76f589cb01406155007ce49c5855764c79c (diff)
downloadvyos-1x-6cbf8db38ddca0c9e3b9cf1a52fc646cc2d5febb.tar.gz
vyos-1x-6cbf8db38ddca0c9e3b9cf1a52fc646cc2d5febb.zip
Merge branch 't1614-bonding' into current
* t1614-bonding: Python/VyOS validate: add is_ip() to check for IPv4 or IPv4 address bridge: T1556: remove unused function freeze() list-interfaces: T1614: support listing interfaces which can be bonded
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/interface-bridge.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/conf_mode/interface-bridge.py b/src/conf_mode/interface-bridge.py
index 85ea68e26..c1527e4a7 100755
--- a/src/conf_mode/interface-bridge.py
+++ b/src/conf_mode/interface-bridge.py
@@ -45,13 +45,6 @@ default_config_data = {
'stp': 0
}
-def freeze(d):
- if isinstance(d, dict):
- return frozenset((key, freeze(value)) for key, value in d.items())
- elif isinstance(d, list):
- return tuple(freeze(value) for value in d)
- return d
-
def diff(first, second):
second = set(second)
return [item for item in first if item not in second]