Only sleep if the certificate wasn't acquired
This commit is contained in:
parent
ce842d851b
commit
4faf770cb6
1 changed files with 5 additions and 1 deletions
|
@ -36,7 +36,11 @@ if [ -z "$ONLYRENEWCERTS" -a -z "$ONLYRENEWCERTSONCE" ]; then
|
|||
certbot certonly --agree-tos --cert-name "${DOMAIN}" \
|
||||
--email "$EMAIL" --expand --non-interactive \
|
||||
--domain "$DOMAIN" --standalone $STAGING
|
||||
sleep 30
|
||||
|
||||
# If it failed, sleep before next try
|
||||
if [ ! -f "/etc/letsencrypt/live/${DOMAIN}/fullchain.pem" ]; then
|
||||
sleep 30
|
||||
fi
|
||||
|
||||
# Correct permissions for multi user container/pod deployments
|
||||
# if not indicated otherwise
|
||||
|
|
Loading…
Reference in a new issue