diff options
author | Christian Breunig <christian@breunig.cc> | 2023-12-24 17:39:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 17:39:23 +0100 |
commit | fb3a7e30bffc949584bbb0ad1f6632ef940605be (patch) | |
tree | 579857d662c665bcb636befa705eadbba8d416b6 /src/conf_mode/protocols_nhrp.py | |
parent | 8e6da6bdf7d0b9b6a562e10ed0ffd8d9d59cfeaa (diff) | |
parent | 4ee4064705ebd1e1a6a59be0c6df3b96755a067e (diff) | |
download | vyos-1x-fb3a7e30bffc949584bbb0ad1f6632ef940605be.tar.gz vyos-1x-fb3a7e30bffc949584bbb0ad1f6632ef940605be.zip |
Merge pull request #2682 from c-po/node-changed-t5837
configdict: T5837: add support to return added nodes when calling node_changed()
Diffstat (limited to 'src/conf_mode/protocols_nhrp.py')
-rwxr-xr-x | src/conf_mode/protocols_nhrp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/protocols_nhrp.py b/src/conf_mode/protocols_nhrp.py index 5ec0bc9e5..c339c6391 100755 --- a/src/conf_mode/protocols_nhrp.py +++ b/src/conf_mode/protocols_nhrp.py @@ -37,7 +37,7 @@ def get_config(config=None): nhrp = conf.get_config_dict(base, key_mangling=('-', '_'), get_first_key=True, no_tag_node_value_mangle=True) - nhrp['del_tunnels'] = node_changed(conf, base + ['tunnel'], key_mangling=('-', '_')) + nhrp['del_tunnels'] = node_changed(conf, base + ['tunnel']) if not conf.exists(base): return nhrp |