summaryrefslogtreecommitdiff
path: root/python/vyos/xml_ref
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2023-06-02 23:35:00 -0500
committerJohn Estabrook <jestabro@vyos.io>2023-06-22 20:15:07 -0500
commitd19e7e5ce633f42f2a084ebd17e8c1e3dfef6b03 (patch)
treeae031a90b924cce093f391ef81984097f1bc6dfe /python/vyos/xml_ref
parentbf1fd02453b9b82938656ac2037a61fd45ba96a2 (diff)
downloadvyos-1x-d19e7e5ce633f42f2a084ebd17e8c1e3dfef6b03.tar.gz
vyos-1x-d19e7e5ce633f42f2a084ebd17e8c1e3dfef6b03.zip
config: T5228: add get_config_defaults options to match get_config_dict
For those cases not covered by automatic merging of defaults in get_config_dict(..., with_defaults=True), get_config_defaults should take arguments consistent with those of get_config_dict, for ease of merging results.
Diffstat (limited to 'python/vyos/xml_ref')
-rw-r--r--python/vyos/xml_ref/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/vyos/xml_ref/__init__.py b/python/vyos/xml_ref/__init__.py
index d3fb4ab07..53ca6ed98 100644
--- a/python/vyos/xml_ref/__init__.py
+++ b/python/vyos/xml_ref/__init__.py
@@ -55,10 +55,10 @@ def get_defaults(path: list, get_first_key=False, recursive=False) -> dict:
return load_reference().get_defaults(path, get_first_key=get_first_key,
recursive=recursive)
-def get_config_defaults(rpath: list, conf: dict, get_first_key=False,
- recursive=False) -> dict:
+def relative_defaults(rpath: list, conf: dict, get_first_key=False,
+ recursive=False) -> dict:
- return load_reference().relative_defaults(rpath, conf=conf,
+ return load_reference().relative_defaults(rpath, conf,
get_first_key=get_first_key,
recursive=recursive)