From d24e531afbd79beff56977f61d9452f95bddf6d8 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Mon, 14 Dec 2015 18:08:52 +0100 Subject: [PATCH] bugfix: PRIVATE_KEY is now configurable in config.sh, don't alter this variable after set_defaults() --- letsencrypt.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/letsencrypt.sh b/letsencrypt.sh index 42c578c..3054ed8 100755 --- a/letsencrypt.sh +++ b/letsencrypt.sh @@ -119,7 +119,6 @@ init_system() { fi else # Check if private account key exists, if it doesn't exist yet generate a new one (rsa key) - PRIVATE_KEY="${BASEDIR}/private_key.pem" if [[ ! -e "${PRIVATE_KEY}" ]]; then echo "+ Generating account key..." _openssl genrsa -out "${PRIVATE_KEY}" "${KEYSIZE}" -- 2.47.2