refactor: certbot stuff

it's weird
This commit is contained in:
Strix 2023-10-20 04:37:44 +02:00
parent fa8abf4b2c
commit b85e943fd1
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

View file

@ -4,9 +4,16 @@ trap exit TERM
if [ -n "${CERTBOT_DOMAINS}" ]; then if [ -n "${CERTBOT_DOMAINS}" ]; then
echo "registering..." echo "registering..."
certbot --nginx -n --keep --agree-tos \ if ! certbot show_account; then
-m "${CERTBOT_EMAIL}" \ certbot register -n \
-d "${CERTBOT_DOMAINS}" --agree-tos \
-m "${CERTBOT_EMAIL}"
fi
for d in $(echo "${CERTBOT_DOMAINS}" | sed 's/,/ /g'); do
echo "requesting for $d..."
certbot --nginx -n --keep -d "$d"
done
while :; do while :; do
echo "renewing domains..." echo "renewing domains..."