diff options
author | Christian Breunig <christian@breunig.cc> | 2024-02-02 20:37:11 +0100 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-02-02 20:37:11 +0100 |
commit | 9b56a86def674886721a367c02371f9da65c3fd3 (patch) | |
tree | 8a11b0d9139df446d6130e7b795e6e09871f6914 | |
parent | 84b17f0e666b7fb48e2e9cde12ce2e84b59dd5b2 (diff) | |
download | vyos-1x-9b56a86def674886721a367c02371f9da65c3fd3.tar.gz vyos-1x-9b56a86def674886721a367c02371f9da65c3fd3.zip |
configdict: T5894: preserve old behavior when dealing with PKI
Commit b152b5202 ("configdict: T5894: add get_config_dict() flag with_pki")
added the generic PKI flag but if there was no PKI subsystem available
in the configuration, no pki dict key ever manifested in the resulting
dictionary requested by the caller.
This is different to the old behavior (which each caller implementing the call
itself) where there always was a pki key present - even if it was empty.
This triggered a bug in the IPSec script
Traceback (most recent call last):
File "/usr/libexec/vyos/conf_mode/vpn_ipsec.py", line 600, in <module>
verify(ipsec)
File "/usr/libexec/vyos/conf_mode/vpn_ipsec.py", line 372, in verify
verify_pki_rsa(ipsec['pki'], rsa)
~~~~~^^^^^^^
KeyError: 'pki'
As it wanted to verify keys, but there was no pki dictionary key available.
This commit restores the previous behavior.
-rw-r--r-- | python/vyos/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/config.py b/python/vyos/config.py index bee85315d..7619ad367 100644 --- a/python/vyos/config.py +++ b/python/vyos/config.py @@ -343,7 +343,7 @@ class Config(object): pki_dict['certificate'][certificate] = config_dict_mangle_acme( certificate, pki_dict['certificate'][certificate]) - conf_dict['pki'] = pki_dict + conf_dict['pki'] = pki_dict # save optional args for a call to get_config_defaults setattr(conf_dict, '_dict_kwargs', kwargs) |