diff options
author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-12-14 19:06:52 +0000 |
---|---|---|
committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2023-12-14 19:06:52 +0000 |
commit | 4d5445740a1529691594263af22f2a9d07bbfe70 (patch) | |
tree | 5b26dabfa671bb370289b71dafb14e92ef02bda7 /src/conf_mode/protocols_bgp.py | |
parent | 2de7be332634c19368f77d52aae0239f6e3c1727 (diff) | |
download | vyos-1x-4d5445740a1529691594263af22f2a9d07bbfe70.tar.gz vyos-1x-4d5445740a1529691594263af22f2a9d07bbfe70.zip |
T5823: Add recursive_defaults for BGP get_config dictionary
Add recursive_defaults values for BGP "get_config" dictionary.
Diffstat (limited to 'src/conf_mode/protocols_bgp.py')
-rwxr-xr-x | src/conf_mode/protocols_bgp.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/conf_mode/protocols_bgp.py b/src/conf_mode/protocols_bgp.py index 5a503a9b7..bf807fa5f 100755 --- a/src/conf_mode/protocols_bgp.py +++ b/src/conf_mode/protocols_bgp.py @@ -50,8 +50,13 @@ def get_config(config=None): # eqivalent of the C foo ? 'a' : 'b' statement base = vrf and ['vrf', 'name', vrf, 'protocols', 'bgp'] or base_path - bgp = conf.get_config_dict(base, key_mangling=('-', '_'), - get_first_key=True, no_tag_node_value_mangle=True) + bgp = conf.get_config_dict( + base, + key_mangling=('-', '_'), + get_first_key=True, + no_tag_node_value_mangle=True, + with_recursive_defaults=True, + ) bgp['dependent_vrfs'] = conf.get_config_dict(['vrf', 'name'], key_mangling=('-', '_'), |