mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-04-30 06:02:45 +00:00
Skip verification if the account is already verified, take 2
This commit is contained in:
parent
4d14d2e911
commit
835f8051cd
9
le.sh
9
le.sh
@ -629,6 +629,12 @@ issue() {
|
||||
d=$(echo $ventry | cut -d $sep -f 1)
|
||||
keyauthorization=$(echo $ventry | cut -d $sep -f 2)
|
||||
uri=$(echo $ventry | cut -d $sep -f 3)
|
||||
|
||||
# check if domain is already verified for the account
|
||||
_info "Checking if domain is already verified"
|
||||
if ! _get $uri ; then
|
||||
_err "$d:Verify pending"
|
||||
|
||||
_info "Verifying:$d"
|
||||
_debug "d" "$d"
|
||||
_debug "keyauthorization" "$keyauthorization"
|
||||
@ -717,6 +723,9 @@ issue() {
|
||||
fi
|
||||
|
||||
done
|
||||
else
|
||||
_info "$d:Already verified"
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user