diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-06-24 14:31:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-24 14:31:10 +0100 |
commit | 71ddbe4ceeeba30f6da055123307ad37c5a93f94 (patch) | |
tree | 0959fdf4d076c9a6c512399c3635079c146b04b0 /src | |
parent | 0752a2713694229d2cb7bef08ea6afc4800a82b2 (diff) | |
parent | 02e9eb07a87220fd4b0f40a2a0a9da86c2726786 (diff) | |
download | vyos-1x-71ddbe4ceeeba30f6da055123307ad37c5a93f94.tar.gz vyos-1x-71ddbe4ceeeba30f6da055123307ad37c5a93f94.zip |
Merge pull request #4572 from c-po/pki-T7573
pki: T7573: fix TypeError when HAProxy is not in use
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/pki.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/pki.py b/src/conf_mode/pki.py index 7d01b6642..6522a3897 100755 --- a/src/conf_mode/pki.py +++ b/src/conf_mode/pki.py @@ -144,7 +144,7 @@ def certbot_request(name: str, config: dict, dry_run: bool=True): # When ACME is used behind a reverse proxy, we always bind to localhost # whatever the CLI listen-address is configured for. - if ('haproxy' in dict_search('used_by', config) and + if ('used_by' in config and 'haproxy' in config['used_by'] and is_systemd_service_running(systemd_services['haproxy']) and not check_port_availability(listen_address, 80)): tmp += f' --http-01-address 127.0.0.1 --http-01-port {internal_ports["certbot_haproxy"]}' @@ -551,7 +551,7 @@ def generate(pki): if not ca_cert_present: tmp = dict_search_args(pki, 'ca', f'{autochain_prefix}{cert}', 'certificate') if not bool(tmp) or tmp != cert_chain_base64: - Message(f'Add/replace automatically imported CA certificate for "{cert}"...') + Message(f'Add/replace automatically imported CA certificate for "{cert}" ...') add_cli_node(['pki', 'ca', f'{autochain_prefix}{cert}', 'certificate'], value=cert_chain_base64) return None |