diff options
author | John Estabrook <jestabro@vyos.io> | 2025-05-30 20:41:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-30 20:41:24 -0500 |
commit | b8cd453177feebc44aee53657bfd2bbcea7a8d66 (patch) | |
tree | 4fb96844b2533373a9b5aff292b09085df09cb6e /python | |
parent | 08dc2e56bf4ad487709ec3849fe97ec24d5b35fe (diff) | |
parent | 712c10a3f3715c563d8646113ab2cc1f011529ed (diff) | |
download | vyos-1x-b8cd453177feebc44aee53657bfd2bbcea7a8d66.tar.gz vyos-1x-b8cd453177feebc44aee53657bfd2bbcea7a8d66.zip |
Merge pull request #4535 from jestabro/default-commit-confirm-action
config-mgmt: T7508: use recursive defaults to read commit-confirm action
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/config_mgmt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/config_mgmt.py b/python/vyos/config_mgmt.py index 308eb1cdb..186fdd223 100644 --- a/python/vyos/config_mgmt.py +++ b/python/vyos/config_mgmt.py @@ -144,7 +144,7 @@ class ConfigMgmt: ['system', 'config-management'], key_mangling=('-', '_'), get_first_key=True, - with_defaults=True, + with_recursive_defaults=True, ) self.max_revisions = int(d.get('commit_revisions', 0)) |