Modified code for Le_ReloadCmd

This commit is contained in:
theit8514 2016-03-07 22:27:08 -05:00
parent ea455f7352
commit eef38fccfe
1 changed files with 2 additions and 9 deletions

11
le.sh
View File

@ -412,9 +412,6 @@ _initpath() {
if [ -z "$CA_CERT_PATH" ] ; then
CA_CERT_PATH="$domainhome/ca.cer"
fi
if [ -z "$POST_RENEW_PATH" ] ; then
POST_RENEW_PATH="$domainhome/post-renew.sh"
fi
}
@ -962,9 +959,6 @@ renew() {
local res=$?
IS_RENEW=""
if [ -x "$POST_RENEW_PATH" -a "$res" -eq "0" ] ; then
(cd $DOMAIN_PATH && exec $POST_RENEW_PATH)
fi
return $res
}
@ -996,15 +990,14 @@ renewAll() {
Le_ReloadCmd=""
DOMAIN_CONF=""
DOMAIN_PATH=""
DOMAIN_CONF=""
DOMAIN_SSL_CONF=""
CSR_PATH=""
CERT_KEY_PATH=""
CERT_PATH=""
CA_CERT_PATH=""
ACCOUNT_KEY_PATH=""
POST_RENEW_PATH=""
wellknown_path=""
@ -1061,7 +1054,7 @@ installcert() {
if [ "$Le_ReloadCmd" ] ; then
_info "Run Le_ReloadCmd: $Le_ReloadCmd"
eval $Le_ReloadCmd
(cd $DOMAIN_PATH && eval $Le_ReloadCmd)
fi
}