From e21d9eccbe14ed51498008e8702ec196676bbf77 Mon Sep 17 00:00:00 2001 From: Mihaly Laszlo Molnar Date: Tue, 19 May 2026 20:37:24 +0200 Subject: [PATCH] Remove deprecated `--manual-public-ip-logging-ok` flag --- scripts/start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/start.sh b/scripts/start.sh index 4dc0f53..d34e044 100644 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -81,14 +81,14 @@ echo "certbot certonly --manual --preferred-challenges dns \ --manual-auth-hook /scripts/auth.sh \ --manual-cleanup-hook /scripts/cleanup.sh \ ${CHAIN_PARAM[@]} $EMAIL_PARAM -d $LETSENCRYPT_DOMAIN \ - --agree-tos --manual-public-ip-logging-ok --keep $TEST_PARAM" + --agree-tos --keep $TEST_PARAM" # Create certificates certbot certonly --manual --preferred-challenges dns \ --manual-auth-hook /scripts/auth.sh \ --manual-cleanup-hook /scripts/cleanup.sh \ "${CHAIN_PARAM[@]}" $EMAIL_PARAM -d $LETSENCRYPT_DOMAIN \ - --agree-tos --manual-public-ip-logging-ok --keep $TEST_PARAM + --agree-tos --keep $TEST_PARAM chown -R $UID:$GID /etc/letsencrypt @@ -108,6 +108,6 @@ while :; do sleep $((${LETSENCRYPT_DELAY} * 60)) # Convert to seconds echo "INFO: Attempting SSL certificate renewal" - certbot --manual-public-ip-logging-ok renew + certbot renew chown -R $UID:$GID /etc/letsencrypt done