mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-26 06:52:37 +00:00
add timeout for nc.
This commit is contained in:
parent
d53289d707
commit
6fc1447fa6
37
le.sh
37
le.sh
@ -618,7 +618,7 @@ _saveaccountconf() {
|
|||||||
|
|
||||||
_startserver() {
|
_startserver() {
|
||||||
content="$1"
|
content="$1"
|
||||||
|
_debug "startserver: $$"
|
||||||
nchelp="$(nc -h 2>&1)"
|
nchelp="$(nc -h 2>&1)"
|
||||||
|
|
||||||
if echo "$nchelp" | grep "\-q[ ,]" >/dev/null ; then
|
if echo "$nchelp" | grep "\-q[ ,]" >/dev/null ; then
|
||||||
@ -646,13 +646,24 @@ _startserver() {
|
|||||||
fi
|
fi
|
||||||
if [[ "$?" != "0" ]] ; then
|
if [[ "$?" != "0" ]] ; then
|
||||||
_err "nc listen error."
|
_err "nc listen error."
|
||||||
return 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
# done
|
# done
|
||||||
}
|
}
|
||||||
|
|
||||||
_stopserver() {
|
_stopserver(){
|
||||||
pid="$1"
|
pid="$1"
|
||||||
|
_debug "pid" "$pid"
|
||||||
|
if [[ -z "$pid" ]] ; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ "$(ps | grep "$pid" | grep "nc")" ]] ; then
|
||||||
|
_debug "Found nc process, kill it."
|
||||||
|
kill -s 9 $pid > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
_get "http://localhost:$Le_HTTPPort" >/dev/null 2>$1
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1184,9 +1195,13 @@ issue() {
|
|||||||
if [[ "$_currentRoot" == "no" ]] ; then
|
if [[ "$_currentRoot" == "no" ]] ; then
|
||||||
_info "Standalone mode server"
|
_info "Standalone mode server"
|
||||||
_startserver "$keyauthorization" &
|
_startserver "$keyauthorization" &
|
||||||
|
if [[ "$?" != "0" ]] ; then
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
serverproc="$!"
|
serverproc="$!"
|
||||||
sleep 2
|
sleep 2
|
||||||
_debug serverproc $serverproc
|
_debug serverproc $serverproc
|
||||||
|
|
||||||
else
|
else
|
||||||
if [[ -z "$wellknown_path" ]] ; then
|
if [[ -z "$wellknown_path" ]] ; then
|
||||||
wellknown_path="$_currentRoot/.well-known/acme-challenge"
|
wellknown_path="$_currentRoot/.well-known/acme-challenge"
|
||||||
@ -1224,7 +1239,20 @@ issue() {
|
|||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
waittimes=0
|
||||||
|
if [[ -z "$MAX_RETRY_TIMES" ]] ; then
|
||||||
|
MAX_RETRY_TIMES=30
|
||||||
|
fi
|
||||||
|
|
||||||
while [[ "1" ]] ; do
|
while [[ "1" ]] ; do
|
||||||
|
let "waittimes+=1"
|
||||||
|
if [[ "$waittimes" -ge "$MAX_RETRY_TIMES" ]] ; then
|
||||||
|
_err "$d:Timeout"
|
||||||
|
_clearupwebbroot "$_currentRoot" "$removelevel" "$token"
|
||||||
|
_clearup
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
_debug "sleep 5 secs to verify"
|
_debug "sleep 5 secs to verify"
|
||||||
sleep 5
|
sleep 5
|
||||||
_debug "checking"
|
_debug "checking"
|
||||||
@ -1946,14 +1974,13 @@ _process() {
|
|||||||
STAGE="1"
|
STAGE="1"
|
||||||
;;
|
;;
|
||||||
--debug)
|
--debug)
|
||||||
if [[ "$2" == "-"* ]] ; then
|
if [[ "$2" == "-"* ]] || [[ -z "$2" ]]; then
|
||||||
DEBUG="1"
|
DEBUG="1"
|
||||||
else
|
else
|
||||||
DEBUG="$2"
|
DEBUG="$2"
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--webroot|-w)
|
--webroot|-w)
|
||||||
wvalue="$2"
|
wvalue="$2"
|
||||||
if [[ -z "$_webroot" ]] ; then
|
if [[ -z "$_webroot" ]] ; then
|
||||||
|
Loading…
Reference in New Issue
Block a user