mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 15:31:45 +00:00
Add conditional check to ensure path is provided
This commit is contained in:
parent
c8bc155cfe
commit
7573e560b6
@ -23,7 +23,13 @@ haproxy_deploy() {
|
||||
# combine the key and fullchain into a single pem and install
|
||||
_savedomainconf DEPLOY_HAPROXY_PEM_PATH "$DEPLOY_HAPROXY_PEM_PATH"
|
||||
|
||||
_pem_full_path="$DEPLOY_HAPROXY_PEM_PATH/$_cdomain.pem"
|
||||
_pem_path="${DEPLOY_HAPROXY_PEM_PATH}"
|
||||
if [ -z "$_pem_path" ]; then
|
||||
_err "Path to save PEM file not found. Please define DEPLOY_HAPROXY_PEM_PATH."
|
||||
return 1
|
||||
fi
|
||||
|
||||
_pem_full_path="$_pem_path/$_cdomain.pem"
|
||||
_info "Full path to PEM $_pem_full_path"
|
||||
|
||||
cat "$_cfullchain" "$_ckey" > "$_pem_full_path"
|
||||
|
Loading…
Reference in New Issue
Block a user