mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
This commit is contained in:
parent
c6b6855131
commit
f803c6c0bf
10
acme.sh
10
acme.sh
@ -4712,6 +4712,8 @@ renewAll() {
|
|||||||
_skipped_msg=""
|
_skipped_msg=""
|
||||||
_error_level=$NOTIFY_LEVEL_SKIP
|
_error_level=$NOTIFY_LEVEL_SKIP
|
||||||
_notify_code=$RENEW_SKIP
|
_notify_code=$RENEW_SKIP
|
||||||
|
_set_level=${NOTIFY_LEVEL:-$NOTIFY_LEVEL_DEFAULT}
|
||||||
|
_debug "_set_level" "$_set_level"
|
||||||
for di in "${CERT_HOME}"/*.*/; do
|
for di in "${CERT_HOME}"/*.*/; do
|
||||||
_debug di "$di"
|
_debug di "$di"
|
||||||
if ! [ -d "$di" ]; then
|
if ! [ -d "$di" ]; then
|
||||||
@ -4735,7 +4737,7 @@ renewAll() {
|
|||||||
_notify_code=0
|
_notify_code=0
|
||||||
fi
|
fi
|
||||||
if [ "$ACME_IN_CRON" ]; then
|
if [ "$ACME_IN_CRON" ]; then
|
||||||
if [ "$NOTIFY_LEVEL" ] && [ $NOTIFY_LEVEL -ge $NOTIFY_LEVEL_RENEW ]; then
|
if [ $_set_level -ge $NOTIFY_LEVEL_RENEW ]; then
|
||||||
if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
|
if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
|
||||||
_send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
|
_send_notify "Renew $d success" "Good, the cert is renewed." "$NOTIFY_HOOK" 0
|
||||||
fi
|
fi
|
||||||
@ -4749,7 +4751,7 @@ renewAll() {
|
|||||||
_notify_code=$RENEW_SKIP
|
_notify_code=$RENEW_SKIP
|
||||||
fi
|
fi
|
||||||
if [ "$ACME_IN_CRON" ]; then
|
if [ "$ACME_IN_CRON" ]; then
|
||||||
if [ "$NOTIFY_LEVEL" ] && [ $NOTIFY_LEVEL -ge $NOTIFY_LEVEL_SKIP ]; then
|
if [ $_set_level -ge $NOTIFY_LEVEL_SKIP ]; then
|
||||||
if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
|
if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
|
||||||
_send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
|
_send_notify "Renew $d skipped" "Good, the cert is skipped." "$NOTIFY_HOOK" "$RENEW_SKIP"
|
||||||
fi
|
fi
|
||||||
@ -4764,7 +4766,7 @@ renewAll() {
|
|||||||
_notify_code=1
|
_notify_code=1
|
||||||
fi
|
fi
|
||||||
if [ "$ACME_IN_CRON" ]; then
|
if [ "$ACME_IN_CRON" ]; then
|
||||||
if [ "$NOTIFY_LEVEL" ] && [ $NOTIFY_LEVEL -ge $NOTIFY_LEVEL_ERROR ]; then
|
if [ $_set_level -ge $NOTIFY_LEVEL_ERROR ]; then
|
||||||
if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
|
if [ "$NOTIFY_MODE" = "$NOTIFY_MODE_CERT" ]; then
|
||||||
_send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
|
_send_notify "Renew $d error" "There is an error." "$NOTIFY_HOOK" 1
|
||||||
fi
|
fi
|
||||||
@ -4783,7 +4785,7 @@ renewAll() {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
_debug _error_level "$_error_level"
|
_debug _error_level "$_error_level"
|
||||||
if [ "$ACME_IN_CRON" ] && [ $_error_level -le $NOTIFY_LEVEL ]; then
|
if [ "$ACME_IN_CRON" ] && [ $_error_level -le $_set_level ]; then
|
||||||
if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then
|
if [ -z "$NOTIFY_MODE" ] || [ "$NOTIFY_MODE" = "$NOTIFY_MODE_BULK" ]; then
|
||||||
_msg_subject="Renew"
|
_msg_subject="Renew"
|
||||||
if [ "$_error_msg" ]; then
|
if [ "$_error_msg" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user