Checking for $nonce before step 7, and check for $certificate after step 7

This commit is contained in:
myvesta 2023-04-06 10:24:54 +02:00 committed by GitHub
commit fbf1d3390a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -329,6 +329,12 @@ if [[ "$status" -ne 200 ]]; then
echo "[$(date)] : EXIT=Let's Encrypt finalize bad status $status" >> /usr/local/vesta/log/letsencrypt.log echo "[$(date)] : EXIT=Let's Encrypt finalize bad status $status" >> /usr/local/vesta/log/letsencrypt.log
check_result $E_CONNECT "Let's Encrypt finalize bad status $status" check_result $E_CONNECT "Let's Encrypt finalize bad status $status"
fi fi
if [ "$nonce" = "" ]; then
echo "[$(date)] : EXIT=Let's Encrypt 'nonce' is empty after step 6" >> /usr/local/vesta/log/letsencrypt.log
check_result $E_CONNECT "Let's Encrypt 'nonce' is empty after step 6"
fi
if [ "$certificate" = "" ]; then if [ "$certificate" = "" ]; then
validation="processing" validation="processing"
i=1 i=1
@ -351,9 +357,10 @@ if [ "$certificate" = "" ]; then
fi fi
done done
fi fi
if [ "$nonce" = "" ]; then
echo "[$(date)] : EXIT=Let's Encrypt 'nonce' is empty on step 6" >> /usr/local/vesta/log/letsencrypt.log if [ "$certificate" = "" ]; then
check_result $E_CONNECT "Let's Encrypt 'nonce' is empty on step 6" echo "[$(date)] : EXIT=Let's Encrypt 'certificate' is empty after step 7" >> /usr/local/vesta/log/letsencrypt.log
check_result $E_CONNECT "Let's Encrypt 'certificate' is empty after step 7"
fi fi
# Downloading signed certificate / STEP 8 # Downloading signed certificate / STEP 8