mirror of
https://github.com/myvesta/vesta
synced 2025-07-06 13:01:56 -07:00
LetsEncrypt check if 'certificate' is empty on step 6
This commit is contained in:
parent
3bafc5b064
commit
ec1c2146a1
1 changed files with 8 additions and 0 deletions
|
@ -323,6 +323,14 @@ 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 [ "$certificate" = "" ]; then
|
||||||
|
echo "[$(date)] : EXIT=Let's Encrypt 'certificate' is empty on step 6" >> /usr/local/vesta/log/letsencrypt.log
|
||||||
|
check_result $E_CONNECT "Let's Encrypt 'certificate' is empty on step 6"
|
||||||
|
fi
|
||||||
|
if [ "$nonce" = "" ]; then
|
||||||
|
echo "[$(date)] : EXIT=Let's Encrypt 'nonce' is empty on step 6" >> /usr/local/vesta/log/letsencrypt.log
|
||||||
|
check_result $E_CONNECT "Let's Encrypt 'nonce' is empty on step 6"
|
||||||
|
fi
|
||||||
|
|
||||||
# Downloading signed certificate / STEP 7
|
# Downloading signed certificate / STEP 7
|
||||||
echo "[$(date)] : --- Downloading signed certificate / STEP 7 ---" >> /usr/local/vesta/log/letsencrypt.log
|
echo "[$(date)] : --- Downloading signed certificate / STEP 7 ---" >> /usr/local/vesta/log/letsencrypt.log
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue