summaryrefslogtreecommitdiff
path: root/python/vyos/configquery.py
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@vyos.io>2025-01-24 18:13:08 +0000
committerGitHub <noreply@github.com>2025-01-24 18:13:08 +0000
commit2f8d231f4ae16cd49a36bc3d5e11b25db1501240 (patch)
tree1a5c6d3fb9acbbb23fa47084c7b4d9676b061b5a /python/vyos/configquery.py
parentf0e05ba825f5f154c570487d1b189a8be6f3b121 (diff)
parent98414a69f0018915ac999f51975618dd5fbe817d (diff)
downloadveeos-1x-2f8d231f4ae16cd49a36bc3d5e11b25db1501240.tar.gz
veeos-1x-2f8d231f4ae16cd49a36bc3d5e11b25db1501240.zip
Merge pull request #4200 from sskaje/T4930-1
T4930: Allow WireGuard peers via DNS hostname
Diffstat (limited to 'python/vyos/configquery.py')
-rw-r--r--python/vyos/configquery.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/python/vyos/configquery.py b/python/vyos/configquery.py
index 5d6ca9be9..4c4ead0a3 100644
--- a/python/vyos/configquery.py
+++ b/python/vyos/configquery.py
@@ -1,4 +1,4 @@
-# Copyright 2021-2024 VyOS maintainers and contributors <maintainers@vyos.io>
+# Copyright 2021-2025 VyOS maintainers and contributors <maintainers@vyos.io>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -120,11 +120,14 @@ class ConfigTreeQuery(GenericConfigQuery):
def get_config_dict(self, path=[], effective=False, key_mangling=None,
get_first_key=False, no_multi_convert=False,
- no_tag_node_value_mangle=False):
+ no_tag_node_value_mangle=False, with_defaults=False,
+ with_recursive_defaults=False):
return self.config.get_config_dict(path, effective=effective,
key_mangling=key_mangling, get_first_key=get_first_key,
no_multi_convert=no_multi_convert,
- no_tag_node_value_mangle=no_tag_node_value_mangle)
+ no_tag_node_value_mangle=no_tag_node_value_mangle,
+ with_defaults=with_defaults,
+ with_recursive_defaults=with_recursive_defaults)
class VbashOpRun(GenericOpRun):
def __init__(self):