Browse Source

Merge 7efdbc83d2 into a5393a58d7

pull/522/merge
Gerrit 6 years ago
committed by GitHub
parent
commit
2532825057
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      getssl

+ 5
- 1
getssl View File

@ -214,10 +214,11 @@
# 2020-02-13 Fix bug with copying to all locations when creating RSA and ECDSA certs (2.20)
# 2020-02-22 Change sign_string to use openssl asn1parse (better fix for #424)
# 2020-02-23 Add dig to config check for systems without drill (ubuntu)
# 2020-03-03 Fix a *() pattern bug with ACMEv2 when extglob is on in send_signed_request (2.20.1)
# ----------------------------------------------------------------------------------------
PROGNAME=${0##*/}
VERSION="2.20"
VERSION="2.20.1"
# defaults
ACCOUNT_KEY_LENGTH=4096
@ -1707,6 +1708,9 @@ send_signed_request() { # Sends a request to the ACME server, signed with your p
fi
nonceproblem="true"
# Avoid problems with *() patterns in variable substition
trap "$(shopt -p extglob)" RETURN
shopt -u extglob
while [[ "$nonceproblem" == "true" ]]; do
# Build header with just our public key and algorithm information


Loading…
Cancel
Save