Commit d35bf517 authored by neil's avatar neil
Browse files

2.3.5: skip domain verify if the authorization is already valid, add to production server.

parent ec603bee
#!/usr/bin/env sh
VER=2.3.4
VER=2.3.5
PROJECT_NAME="acme.sh"
......@@ -1510,14 +1510,14 @@ issue() {
keyauthorization="$token.$thumbprint"
_debug keyauthorization "$keyauthorization"
if [ "$STAGE" ] ; then
if printf "$response" | grep '"status":"valid"' >/dev/null 2>&1 ; then
_info "$d is already verified, skip."
keyauthorization=$STATE_VERIFIED
_debug keyauthorization "$keyauthorization"
fi
if printf "$response" | grep '"status":"valid"' >/dev/null 2>&1 ; then
_info "$d is already verified, skip."
keyauthorization=$STATE_VERIFIED
_debug keyauthorization "$keyauthorization"
fi
dvlist="$d$sep$keyauthorization$sep$uri$sep$vtype$sep$_currentRoot"
_debug dvlist "$dvlist"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment