File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 210
210
# 2020-02-11 Add SCP_OPTS and SFTP_OPTS
211
211
# 2020-02-12 Fix for DUAL_RSA_ECDSA not working with ACMEv2 (#334, #474, #502)
212
212
# 2020-02-12 Fix #424 - Sporadic "error in EC signing couldn't get R from ..." (2.18)
213
+ # 2020-02-12 Fix "Registration key already in use" (2.19)
213
214
# ----------------------------------------------------------------------------------------
214
215
215
216
PROGNAME=${0##*/ }
216
- VERSION=" 2.18 "
217
+ VERSION=" 2.19 "
217
218
218
219
# defaults
219
220
ACCOUNT_KEY_LENGTH=4096
@@ -1753,7 +1754,7 @@ send_signed_request() { # Sends a request to the ACME server, signed with your p
1753
1754
debug response " $response "
1754
1755
code= $( awk ' $1 ~ "^HTTP" {print $2}' " $CURL_HEADER " | tail -1)
1755
1756
debug code " $code "
1756
- if [[ " $code " == 4* && $response != * " error:badNonce" * ]]; then
1757
+ if [[ " $code " == 4* && $response != * " error:badNonce" * && " $code " != 409 ]]; then
1757
1758
detail=$( echo " $response " | grep " detail" )
1758
1759
error_exit " ACME server returned error: ${code} : ${detail} "
1759
1760
fi
You can’t perform that action at this time.
0 commit comments