1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-11 16:33:02 +00:00
Apparently UAPI does not return any error code, just JSON output that has a string "status: 0" whenever the command fails.
This commit is contained in:
Santeri Kannisto
2017-09-26 07:04:30 +04:00
committed by GitHub
parent 7b4bbed553
commit acf117584b
+2 -2
View File
@@ -51,8 +51,8 @@ cpanel_uapi_deploy() {
else
_response=$(uapi SSL install_ssl domain="$_cdomain" cert="$_cert" key="$_key")
fi
if [ $? -ne 0 ]; then
error_response="status: 0"
if test "${_response#*$error_response}" != "$_response"; then
_err "Error in deploying certificate:"
_err "$_response"
return 1