diff options
author | Christian Breunig <christian@breunig.cc> | 2024-06-15 22:16:24 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-06-15 22:19:47 +0200 |
commit | a4d49a96918c0f0dac3d17f9cf3a5b8f3a9505c0 (patch) | |
tree | 0014269568bd1b8ce9ac6982b64cd022940879b7 /src/conf_mode/pki.py | |
parent | f3d3b0fc0280ff005183fc888cd77f3cde59f34c (diff) | |
download | vyos-1x-a4d49a96918c0f0dac3d17f9cf3a5b8f3a9505c0.tar.gz vyos-1x-a4d49a96918c0f0dac3d17f9cf3a5b8f3a9505c0.zip |
pki: T6241: remove debug print statement about updated subsystems
Commit 9f9891a2099 ("pki: T6241: Fix dependency updates on PKI changes") added
a print() statement which notified the users about the subsystems which got
supplied with an updated certificate.
Example:
> PKI: Updating config: interfaces openvpn vtun0 tls certificate openvpn_vtun0
> PKI: Updating config: interfaces openvpn vtun0 tls ca_certificate openvpn_vtun0_1
This is an informational message which should maybe (if needed) be sent to
syslog. But the main issue is that CLI paths are mangled (- to _) which makes
the about print output wrong and could potentially confuse users.
Statement has been commented to be re-enabled for debugging.
Diffstat (limited to 'src/conf_mode/pki.py')
-rwxr-xr-x | src/conf_mode/pki.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/pki.py b/src/conf_mode/pki.py index f37cac524..4a0e86f32 100755 --- a/src/conf_mode/pki.py +++ b/src/conf_mode/pki.py @@ -232,7 +232,7 @@ def get_config(config=None): path = search['path'] path_str = ' '.join(path + found_path) - print(f'PKI: Updating config: {path_str} {item_name}') + #print(f'PKI: Updating config: {path_str} {item_name}') if path[0] == 'interfaces': ifname = found_path[0] |