mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
fix
This commit is contained in:
parent
a0c2d312e9
commit
32b62d6d4f
@ -31,7 +31,7 @@ mailcow_deploy() {
|
|||||||
if [ -f "${_mailcow_path}/generate_config.sh" ]; then
|
if [ -f "${_mailcow_path}/generate_config.sh" ]; then
|
||||||
_ssl_path="${_mailcow_path}/data/assets/ssl/"
|
_ssl_path="${_mailcow_path}/data/assets/ssl/"
|
||||||
else
|
else
|
||||||
_ssl_path="${_mailcow_path}"
|
_ssl_path="${_mailcow_path}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d "$_ssl_path" ]; then
|
if [ ! -d "$_ssl_path" ]; then
|
||||||
@ -41,17 +41,16 @@ mailcow_deploy() {
|
|||||||
|
|
||||||
# ECC or RSA
|
# ECC or RSA
|
||||||
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 detected"
|
_info "ECC key type detected"
|
||||||
_cert_type="ecdsa"
|
_cert_type="ecdsa"
|
||||||
_cert_name_prefix="ecdsa-"
|
_cert_name_prefix="ecdsa-"
|
||||||
else
|
else
|
||||||
_info "RSA key type detected"
|
_info "RSA key type detected"
|
||||||
_cert_type="rsa"
|
_cert_type="rsa"
|
||||||
_cert_name_prefix=""
|
_cert_name_prefix=""
|
||||||
|
|
||||||
fi
|
fi
|
||||||
_info "Copying key and cert"
|
_info "Copying key and cert"
|
||||||
_real_key="$_ssl_path/${_cert_name_prefix}key.pem"
|
_real_key="$_ssl_path/${_cert_name_prefix}key.pem"
|
||||||
|
Loading…
Reference in New Issue
Block a user