Bringing back Better handling of calm-down routine while LE renewing

Accidentally overwritten in f8b4d42b74 commit
Original commit: 3d8b6a87a7

Calming down is because https://github.com/serghey-rodin/vesta/issues/1193 issue
This commit is contained in:
dpeca 2018-12-27 21:10:17 +01:00 committed by GitHub
commit 0d85c88d18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,10 +22,11 @@ source $VESTA/conf/vesta.conf
# Action #
#----------------------------------------------------------#
lecounter=0
# Checking user certificates
for user in $($BIN/v-list-users plain |cut -f 1); do
USER_DATA=$VESTA/data/users/$user
lecounter=0
for domain in $(search_objects 'web' 'LETSENCRYPT' 'yes' 'DOMAIN'); do
crt_data=$(openssl x509 -text -in $USER_DATA/ssl/$domain.crt)
@ -35,6 +36,10 @@ for user in $($BIN/v-list-users plain |cut -f 1); do
seconds_valid=$((expiration - now))
days_valid=$((seconds_valid / 86400))
if [[ "$days_valid" -lt 31 ]]; then
if [ $lecounter -gt 0 ]; then
sleep 10
fi
((lecounter++))
aliases=$(echo "$crt_data" |grep DNS:)
aliases=$(echo "$aliases" |sed -e "s/DNS://g" -e "s/,//")
aliases=$(echo "$aliases" |tr ' ' '\n' |sed "/^$/d")
@ -44,10 +49,6 @@ for user in $($BIN/v-list-users plain |cut -f 1); do
if [ $? -ne 0 ]; then
echo "$domain $msg"
fi
if [ $lecounter -gt 0 ]; then
sleep 10
fi
((lecounter++))
fi
done
done