boy scouting

This commit is contained in:
Hossy 2024-01-30 01:22:57 -06:00
parent afacdfcb95
commit 61209c9cd7

10
acme.sh
View File

@ -345,7 +345,7 @@ _debug() {
fi fi
if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_1" ]; then
_bash_debug=$(__debug_bash_helper) _bash_debug=$(__debug_bash_helper)
_printargs "${_bash_debug}$@" >&2 _printargs "${_bash_debug}$*" >&2
fi fi
} }
@ -379,7 +379,7 @@ _debug2() {
fi fi
if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_2" ]; then
_bash_debug=$(__debug_bash_helper) _bash_debug=$(__debug_bash_helper)
_printargs "${_bash_debug}$@" >&2 _printargs "${_bash_debug}$*" >&2
fi fi
} }
@ -412,7 +412,7 @@ _debug3() {
fi fi
if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then if [ "${DEBUG:-$DEBUG_LEVEL_NONE}" -ge "$DEBUG_LEVEL_3" ]; then
_bash_debug=$(__debug_bash_helper) _bash_debug=$(__debug_bash_helper)
_printargs "${_bash_debug}$@" >&2 _printargs "${_bash_debug}$*" >&2
fi fi
} }
@ -2709,6 +2709,7 @@ _clearAPI() {
} }
#server #server
# shellcheck disable=SC2120
_initAPI() { _initAPI() {
_api_server="${1:-$ACME_DIRECTORY}" _api_server="${1:-$ACME_DIRECTORY}"
_debug "_init api for server: $_api_server" _debug "_init api for server: $_api_server"
@ -2719,6 +2720,7 @@ _initAPI() {
while [ -z "$ACME_NEW_ACCOUNT" ] && [ "${_request_retry_times}" -lt "$MAX_API_RETRY_TIMES" ]; do while [ -z "$ACME_NEW_ACCOUNT" ] && [ "${_request_retry_times}" -lt "$MAX_API_RETRY_TIMES" ]; do
_request_retry_times=$(_math "$_request_retry_times" + 1) _request_retry_times=$(_math "$_request_retry_times" + 1)
response=$(_get "$_api_server") response=$(_get "$_api_server")
# shellcheck disable=SC2181
if [ "$?" != "0" ]; then if [ "$?" != "0" ]; then
_debug2 "response" "$response" _debug2 "response" "$response"
_info "Can not init api for: $_api_server." _info "Can not init api for: $_api_server."
@ -7086,7 +7088,7 @@ _processAccountConf() {
} }
_checkSudo() { _checkSudo() {
if [ -z "__INTERACTIVE" ]; then if [ -z "${__INTERACTIVE}" ]; then
#don't check if it's not in an interactive shell #don't check if it's not in an interactive shell
return 0 return 0
fi fi