From 454c32aeed9397bb392984bd2b24f2701dab99e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Schr=C3=B6tter?= Date: Wed, 16 Nov 2016 20:35:29 +0100 Subject: [PATCH] Bugfix for RENEW_ALLOW=false (--force ignored) --- getssl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getssl b/getssl index 354378e..4e24f2b 100755 --- a/getssl +++ b/getssl @@ -1443,7 +1443,7 @@ fi # if there is an existing certificate file, check details. if [[ -s "$CERT_FILE" ]]; then debug "certificate $CERT_FILE exists" - if [[ "$RENEW_ALLOW" == "false" ]]; then + if [[ "$RENEW_ALLOW" == "false" ]] && [[ $_FORCE_RENEW -ne 1 ]]; then info "Auto-renewal disabled." graceful_exit else