File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 157
157
# 2016-11-09 Add SKIP_HTTP_TOKEN_CHECK option (Issue #170) (1.81)
158
158
# 2016-11-13 bug fix DOMAIN_KEY_CERT generation (1.82)
159
159
# 2016-11-17 add PREVENT_NON_INTERACTIVE_RENEWAL option (1.83)
160
+ # 2016-12-03 add HTTP_TOKEN_CHECK_WAIT option (1.84)
160
161
# ----------------------------------------------------------------------------------------
161
162
162
163
PROGNAME=${0##*/ }
163
- VERSION=" 1.83 "
164
+ VERSION=" 1.84 "
164
165
165
166
# defaults
166
167
CODE_LOCATION=" https://raw.githubusercontent.com/srvrco/getssl/master/getssl"
@@ -189,6 +190,7 @@ DEACTIVATE_AUTH="false"
189
190
PREVIOUSLY_VALIDATED=" true"
190
191
DUAL_RSA_ECDSA=" false"
191
192
SKIP_HTTP_TOKEN_CHECK=" false"
193
+ HTTP_TOKEN_CHECK_WAIT=0
192
194
ORIG_UMASK=$( umask)
193
195
_USE_DEBUG=0
194
196
_CREATE_CONFIG=0
@@ -1694,6 +1696,7 @@ for d in $alldomains; do
1694
1696
if [[ " $SKIP_HTTP_TOKEN_CHECK " == " true" ]]; then
1695
1697
info " SKIP_HTTP_TOKEN_CHECK=true so not checking that token is working correctly"
1696
1698
else
1699
+ sleep " $HTTP_TOKEN_CHECK_WAIT "
1697
1700
# check that we can reach the challenge ourselves, if not, then error
1698
1701
if [[ ! " $( curl -k --silent --location " $wellknown_url " ) " == " $keyauthorization " ]]; then
1699
1702
error_exit " for some reason could not reach $wellknown_url - please check it manually"
You can’t perform that action at this time.
0 commit comments