Browse Source

Merge pull request #680 from srvrco/release-2.37

release-2.37
pull/684/head v2.37
Tim Kimber 4 years ago
committed by GitHub
parent
commit
4aa9c02186
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 7 deletions
  1. +1
    -1
      .github/workflows/stale2.yml
  2. +6
    -4
      getssl
  3. +2
    -2
      test/2-simple-dns01-dig.bats

+ 1
- 1
.github/workflows/stale2.yml View File

@ -13,4 +13,4 @@ jobs:
days-before-stale: 60
days-before-close: 30
any-of-labels: 'needs more information'
debug-only: true
debug-only: false

+ 6
- 4
getssl View File

@ -260,7 +260,9 @@
# 2021-02-18 Add FULL_CHAIN_INCLUDE_ROOT
# 2021-03-25 Fix DNS challenge completion check if CNAMEs on different NS are used (sideeffect42)(2.35)
# 2021-05-08 Merge from tlhackque/getssl: GoDaddy, split-view, tempfile permissions fixes, --version(2.36)
# 2021-07-07 Request new certificate if SANs have changed (#669)(#673)
# 2021-07-12 Do not redirect outputs on remote commands when the debug option is used (atisne)
# 2021-07-20 Use +noidnout to enable certificates for IDN domains (#679)(2.37)
# ----------------------------------------------------------------------------------------
case :$SHELLOPTS: in
@ -269,16 +271,16 @@ esac
PROGNAME=${0##*/}
PROGDIR="$(cd "$(dirname "$0")" || exit; pwd -P;)"
VERSION="2.36"
VERSION="2.37"
# defaults
ACCOUNT_KEY_LENGTH=4096
ACCOUNT_KEY_TYPE="rsa"
CA="https://acme-staging-v02.api.letsencrypt.org/directory"
CA_CERT_LOCATION=""
CA="https://acme-staging-v02.api.letsencrypt.org/directory"
CHALLENGE_CHECK_TYPE="http"
CHECK_REMOTE="true"
CHECK_REMOTE_WAIT=0
CHECK_REMOTE="true"
CODE_LOCATION="https://raw.githubusercontent.com/srvrco/getssl/master/getssl"
CSR_SUBJECT="/"
CURL_USERAGENT="${PROGNAME}/${VERSION}"
@ -291,6 +293,7 @@ FULL_CHAIN_INCLUDE_ROOT="false"
GETSSL_IGNORE_CP_PRESERVE="false"
HTTP_TOKEN_CHECK_WAIT=0
IGNORE_DIRECTORY_DOMAIN="false"
OCSP_MUST_STAPLE="false"
ORIG_UMASK=$(umask)
PREFERRED_CHAIN="" # Set this to use an alternative root certificate
PREVIOUSLY_VALIDATED="true"
@ -301,7 +304,6 @@ REUSE_PRIVATE_KEY="true"
SERVER_TYPE="https"
SKIP_HTTP_TOKEN_CHECK="false"
SSLCONF="$(openssl version -d 2>/dev/null| cut -d\" -f2)/openssl.cnf"
OCSP_MUST_STAPLE="false"
TEMP_UPGRADE_FILE=""
TOKEN_USER_ID=""
USE_SINGLE_ACL="false"


+ 2
- 2
test/2-simple-dns01-dig.bats View File

@ -5,7 +5,7 @@ load '/bats-assert/load.bash'
load '/getssl/test/test_helper.bash'
setup() {
setup_file() {
if [ -z "$STAGING" ]; then
export CURL_CA_BUNDLE=/root/pebble-ca-bundle.crt
fi
@ -18,7 +18,7 @@ setup() {
}
teardown() {
teardown_file() {
if [ -f /usr/bin/host.getssl.bak ]; then
mv /usr/bin/host.getssl.bak /usr/bin/host
fi


Loading…
Cancel
Save