From 1e33cfe52b51fb304b59b53d35a876e7f2a9398f Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Sat, 12 Dec 2015 15:41:34 +0100 Subject: [PATCH] make default PRIVATE_KEY and WELLKNOWN relative to BASEDIR, even if BASEDIR is overridden in config.sh; basic checks on BASEDIR --- config.sh.example | 10 +++++----- letsencrypt.sh | 25 +++++++++++++++++++++---- 2 files changed, 26 insertions(+), 9 deletions(-) diff --git a/config.sh.example b/config.sh.example index 21f2297..b58356e 100644 --- a/config.sh.example +++ b/config.sh.example @@ -19,14 +19,14 @@ # Path to license agreement (default: https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf) #LICENSE="https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf" -# Output directory for challenge-tokens to be served by webserver or deployed in HOOK (default: $SCRIPTDIR/.acme-challenges) -#WELLKNOWN="${SCRIPTDIR}/.acme-challenges" - # Base directory for account key, generated certificates and list of domains (default: $SCRIPTDIR -- uses config directory if undefined) #BASEDIR=$SCRIPTDIR -# Location of private account key -#PRIVATE_KEY=${BASEDIR}/private_key.pem +# Output directory for challenge-tokens to be served by webserver or deployed in HOOK (default: $BASEDIR/.acme-challenges) +#WELLKNOWN="${BASEDIR}/.acme-challenges" + +# Location of private account key (default: $BASEDIR/private_key.pem) +#PRIVATE_KEY="${BASEDIR}/private_key.pem" # Default keysize for private keys (default: 4096) #KEYSIZE="4096" diff --git a/letsencrypt.sh b/letsencrypt.sh index bd07aab..69aa4a6 100755 --- a/letsencrypt.sh +++ b/letsencrypt.sh @@ -16,14 +16,26 @@ CA="https://acme-v01.api.letsencrypt.org/directory" LICENSE="https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf" HOOK= RENEW_DAYS="14" -PRIVATE_KEY=${BASEDIR}/private_key.pem +PRIVATE_KEY= KEYSIZE="4096" -WELLKNOWN="${SCRIPTDIR}/.acme-challenges" +WELLKNOWN= PRIVATE_KEY_RENEW="no" OPENSSL_CNF="$(openssl version -d | cut -d'"' -f2)/openssl.cnf" ROOTCERT="lets-encrypt-x1-cross-signed.pem" CONTACT_EMAIL= +set_defaults() { + # Default config variables depending on BASEDIR + if [[ -z "${PRIVATE_KEY}" ]]; then + PRIVATE_KEY="${BASEDIR}/private_key.pem" + fi + if [[ -z "${WELLKNOWN}" ]]; then + WELLKNOWN="${BASEDIR}/.acme-challenges" + fi + + LOCKFILE="${BASEDIR}/lock" +} + init_system() { # Check for config in various locations if [[ -z "${CONFIG:-}" ]]; then @@ -52,9 +64,14 @@ init_system() { # Remove slash from end of BASEDIR. Mostly for cleaner outputs, doesn't change functionality. BASEDIR="${BASEDIR%%/}" - # Lockfile handling (prevents concurrent access) - LOCKFILE="${BASEDIR}/lock" + # Check BASEDIR and set default variables + if [[ ! -d "${BASEDIR}" ]]; then + echo "ERROR: BASEDIR does not exist: ${BASEDIR}" + exit 1 + fi + set_defaults + # Lockfile handling (prevents concurrent access) set -o noclobber if ! { date > "${LOCKFILE}"; } 2>/dev/null; then echo " + ERROR: Lock file '${LOCKFILE}' present, aborting." >&2 -- 2.39.5