fix: don't fail if renewal fails

it leaves the lock in place
This commit is contained in:
f 2023-03-15 18:46:01 -03:00
parent 5fbfb39075
commit 923d9f1d78

View file

@ -42,7 +42,7 @@ set -e
case $1 in
# Renew certificates, trust in certbot's algorithms
renew)
/usr/bin/certbot renew --quiet --agree-tos
/usr/bin/certbot renew --quiet --agree-tos || true
touch "${updated}"
;;
bootstrap)