fix: don't fail if renewal fails
it leaves the lock in place
This commit is contained in:
parent
5fbfb39075
commit
923d9f1d78
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ set -e
|
||||||
case $1 in
|
case $1 in
|
||||||
# Renew certificates, trust in certbot's algorithms
|
# Renew certificates, trust in certbot's algorithms
|
||||||
renew)
|
renew)
|
||||||
/usr/bin/certbot renew --quiet --agree-tos
|
/usr/bin/certbot renew --quiet --agree-tos || true
|
||||||
touch "${updated}"
|
touch "${updated}"
|
||||||
;;
|
;;
|
||||||
bootstrap)
|
bootstrap)
|
||||||
|
|
Loading…
Reference in a new issue