mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-12 17:31:47 +00:00
clear code
This commit is contained in:
parent
5a177aad36
commit
4ca9bc799d
28
le.sh
28
le.sh
@ -478,14 +478,7 @@ renew() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
DOMAIN_CONF=$WORKING_DIR/$Le_Domain/$Le_Domain.conf
|
DOMAIN_CONF=$WORKING_DIR/$Le_Domain/$Le_Domain.conf
|
||||||
if [ -f "$DOMAIN_CONF" ] ; then
|
|
||||||
source "$DOMAIN_CONF"
|
|
||||||
if [ "$(date -u "+%s" )" -lt "$Le_NextRenewTime" ] ; then
|
|
||||||
_info "Skip, Next renwal time is: $Le_NextRenewTimeStr"
|
|
||||||
return 2
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$Le_Webroot" ] ; then
|
if [ -z "$Le_Webroot" ] ; then
|
||||||
echo Le_Webroot can not found, please remove the conf file and issue a new cert
|
echo Le_Webroot can not found, please remove the conf file and issue a new cert
|
||||||
return 1
|
return 1
|
||||||
@ -500,6 +493,25 @@ renewAll() {
|
|||||||
for d in $(ls -F $WORKING_DIR | grep '/$') ; do
|
for d in $(ls -F $WORKING_DIR | grep '/$') ; do
|
||||||
d=$(echo $d | cut -d '/' -f 1)
|
d=$(echo $d | cut -d '/' -f 1)
|
||||||
_info "renew $d"
|
_info "renew $d"
|
||||||
|
|
||||||
|
Le_LinkCert=""
|
||||||
|
Le_Domain=""
|
||||||
|
Le_Alt=""
|
||||||
|
Le_Webroot=""
|
||||||
|
Le_Keylength=""
|
||||||
|
Le_LinkIssuer=""
|
||||||
|
|
||||||
|
Le_CertCreateTime=""
|
||||||
|
Le_CertCreateTimeStr=""
|
||||||
|
Le_RenewalDays=""
|
||||||
|
Le_NextRenewTime=""
|
||||||
|
Le_NextRenewTimeStr=""
|
||||||
|
|
||||||
|
Le_RealCertPath=""
|
||||||
|
Le_RealKeyPath=""
|
||||||
|
|
||||||
|
Le_ReloadCmd=""
|
||||||
|
|
||||||
renew "$d"
|
renew "$d"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user