mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
add more debug message
This commit is contained in:
parent
9aaf36cd0c
commit
ec9fc8cbf7
5
acme.sh
5
acme.sh
@ -585,6 +585,7 @@ _post() {
|
|||||||
_debug "url" "$url"
|
_debug "url" "$url"
|
||||||
if _exists "curl" ; then
|
if _exists "curl" ; then
|
||||||
_CURL="$CURL --dump-header $HTTP_HEADER "
|
_CURL="$CURL --dump-header $HTTP_HEADER "
|
||||||
|
_debug "_CURL" "$_CURL"
|
||||||
if [ "$needbase64" ] ; then
|
if [ "$needbase64" ] ; then
|
||||||
response="$($_CURL -A "User-Agent: $USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" --data "$body" "$url" 2>"$HTTP_ERROR_FILE" | _base64)"
|
response="$($_CURL -A "User-Agent: $USER_AGENT" -X $httpmethod -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" --data "$body" "$url" 2>"$HTTP_ERROR_FILE" | _base64)"
|
||||||
else
|
else
|
||||||
@ -592,6 +593,7 @@ _post() {
|
|||||||
fi
|
fi
|
||||||
_ret="$?"
|
_ret="$?"
|
||||||
else
|
else
|
||||||
|
_debug "WGET" "$WGET"
|
||||||
if [ "$needbase64" ] ; then
|
if [ "$needbase64" ] ; then
|
||||||
if [ "$httpmethod"="POST" ] ; then
|
if [ "$httpmethod"="POST" ] ; then
|
||||||
response="$($WGET -S -O - --user-agent="$USER_AGENT" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$url" 2>"$HTTP_HEADER" | _base64)"
|
response="$($WGET -S -O - --user-agent="$USER_AGENT" --header "$_H4" --header "$_H3" --header "$_H2" --header "$_H1" --post-data="$body" "$url" 2>"$HTTP_HEADER" | _base64)"
|
||||||
@ -623,6 +625,7 @@ _get() {
|
|||||||
onlyheader="$2"
|
onlyheader="$2"
|
||||||
_debug url $url
|
_debug url $url
|
||||||
if _exists "curl" ; then
|
if _exists "curl" ; then
|
||||||
|
_debug "CURL" "$CURL"
|
||||||
if [ "$onlyheader" ] ; then
|
if [ "$onlyheader" ] ; then
|
||||||
$CURL -I -A "User-Agent: $USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" $url 2>"$HTTP_ERROR_FILE"
|
$CURL -I -A "User-Agent: $USER_AGENT" -H "$_H1" -H "$_H2" -H "$_H3" -H "$_H4" $url 2>"$HTTP_ERROR_FILE"
|
||||||
else
|
else
|
||||||
@ -638,7 +641,7 @@ _get() {
|
|||||||
fi
|
fi
|
||||||
ret=$?
|
ret=$?
|
||||||
fi
|
fi
|
||||||
|
_debug "ret" "$ret"
|
||||||
if [ "$ret" != "0" ] ; then
|
if [ "$ret" != "0" ] ; then
|
||||||
_err "$(cat "$HTTP_ERROR_FILE")"
|
_err "$(cat "$HTTP_ERROR_FILE")"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user