diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-04-20 14:22:21 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-04-20 14:22:26 +0200 |
commit | 714346e2ee0c61a08a9d17fdb962f2fbea9f73c9 (patch) | |
tree | b046427caf467c86076638cb072d7f5d55fc0eb4 /python | |
parent | c9b33da5260db44c70e066f61711e61f7341bf1e (diff) | |
download | vyos-1x-714346e2ee0c61a08a9d17fdb962f2fbea9f73c9.tar.gz vyos-1x-714346e2ee0c61a08a9d17fdb962f2fbea9f73c9.zip |
vyos.configdict: T4369: add is_node_changed() helper
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/configdict.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/python/vyos/configdict.py b/python/vyos/configdict.py index 3f5b9a246..d6718a6e2 100644 --- a/python/vyos/configdict.py +++ b/python/vyos/configdict.py @@ -104,6 +104,12 @@ def list_diff(first, second): second = set(second) return [item for item in first if item not in second] +def is_node_changed(conf, path): + from vyos.configdiff import get_config_diff + D = get_config_diff(conf, key_mangling=('-', '_')) + D.set_level(conf.get_level()) + return D.is_node_changed(path) + def leaf_node_changed(conf, path): """ Check if a leaf node was altered. If it has been altered - values has been |