diff options
author | Christian Breunig <christian@breunig.cc> | 2024-01-04 11:17:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-04 11:17:27 +0100 |
commit | 598fed91068401d5ed259ea742820248d851d246 (patch) | |
tree | 14ad877fe86882f8325f6bda83471197aecc6c45 /src/conf_mode/interfaces_sstpc.py | |
parent | 1cc70ce273cbddb5ea9eb4148808c6c2aaf3d28f (diff) | |
parent | 706fdbb234202723e02f93ad8eb724649181a60a (diff) | |
download | vyos-1x-598fed91068401d5ed259ea742820248d851d246.tar.gz vyos-1x-598fed91068401d5ed259ea742820248d851d246.zip |
Merge pull request #2751 from vyos/mergify/bp/sagitta/pr-2750
configdict: T5894: add get_config_dict() flag with_pki (backport #2750)
Diffstat (limited to 'src/conf_mode/interfaces_sstpc.py')
-rwxr-xr-x | src/conf_mode/interfaces_sstpc.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/conf_mode/interfaces_sstpc.py b/src/conf_mode/interfaces_sstpc.py index b588910dc..b9d7a74fb 100755 --- a/src/conf_mode/interfaces_sstpc.py +++ b/src/conf_mode/interfaces_sstpc.py @@ -45,7 +45,7 @@ def get_config(config=None): else: conf = Config() base = ['interfaces', 'sstpc'] - ifname, sstpc = get_interface_dict(conf, base) + ifname, sstpc = get_interface_dict(conf, base, with_pki=True) # We should only terminate the SSTP client session if critical parameters # change. All parameters that can be changed on-the-fly (like interface @@ -57,10 +57,6 @@ def get_config(config=None): # bail out early - no need to further process other nodes break - # Load PKI certificates for later processing - sstpc['pki'] = conf.get_config_dict(['pki'], key_mangling=('-', '_'), - get_first_key=True, - no_tag_node_value_mangle=True) return sstpc def verify(sstpc): |