Browse Source

Bugfix for RENEW_ALLOW=false (--force ignored)

pull/174/head
Christian Schrötter 9 years ago
parent
commit
454c32aeed
No known key found for this signature in database GPG Key ID: 8038DEBE14AD09A4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      getssl

+ 1
- 1
getssl View File

@ -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


Loading…
Cancel
Save