Browse Source

fix: [letsencrypt] allow all domains to be renewed in one go

Possibility to receive ``stdin`` in actions (a compose new feature)
introduced a bug here that would allow only the first domain to be
renewed.

Signed-off-by: Valentin Lab <valentin.lab@kalysto.org>
pull/22/head 1.5.19
Valentin Lab 2 years ago
parent
commit
2e4861aaf0
  1. 2
      letsencrypt/lib/common

2
letsencrypt/lib/common

@ -365,7 +365,7 @@ crt_renew() {
else
info "Renewing domain $domain ($remaining days left)."
fi
crt "$cfg" renew "$domain"
crt "$cfg" renew "$domain" </dev/null
if [ "$?" != "0" ]; then
failed+=("$domain")
err "Certificate renew of '$domain' failed."

Loading…
Cancel
Save