Unverified Commit 733b4e0a authored by andrewheberle's avatar andrewheberle Committed by GitHub
Browse files

Fix Le_Keylength case

parent 08d29a83
...@@ -113,11 +113,11 @@ haproxy_deploy() { ...@@ -113,11 +113,11 @@ haproxy_deploy() {
# Set the suffix depending if we are creating a bundle or not # Set the suffix depending if we are creating a bundle or not
if [ "${Le_Deploy_haproxy_bundle}" = "yes" ]; then if [ "${Le_Deploy_haproxy_bundle}" = "yes" ]; then
_info "Bundle creation requested" _info "Bundle creation requested"
# Initialise $Le_KeyLength if its not already set # Initialise $Le_Keylength if its not already set
if [ -z "${Le_KeyLength}" ]; then if [ -z "${Le_Keylength}" ]; then
Le_KeyLength="" Le_Keylength=""
fi fi
if _isEccKey "${Le_KeyLength}"; then if _isEccKey "${Le_Keylength}"; then
_info "ECC key type so set suffix to .ecc" _info "ECC key type so set suffix to .ecc"
_suffix=".ecc" _suffix=".ecc"
else else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment