mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 05:01:40 +00:00
minor
This commit is contained in:
parent
9a76ef2f32
commit
b7b8311c3d
18
le.sh
18
le.sh
@ -237,6 +237,14 @@ _initpath() {
|
||||
WORKING_DIR=$HOME/.le
|
||||
fi
|
||||
|
||||
if [ -z "$ACME_DIR" ] ; then
|
||||
ACME_DIR="/home/.acme"
|
||||
fi
|
||||
|
||||
if [ -z "$APACHE_CONF_BACKUP_DIR" ] ; then
|
||||
APACHE_CONF_BACKUP_DIR="$WORKING_DIR/"
|
||||
fi
|
||||
|
||||
domain="$1"
|
||||
mkdir -p "$WORKING_DIR"
|
||||
ACCOUNT_KEY_PATH="$WORKING_DIR/account.acc"
|
||||
@ -257,13 +265,7 @@ _initpath() {
|
||||
|
||||
CA_CERT_PATH="$WORKING_DIR/$domain/ca.cer"
|
||||
|
||||
if [ -z "$ACME_DIR" ] ; then
|
||||
ACME_DIR="/home/.acme"
|
||||
fi
|
||||
|
||||
if [ -z "$APACHE_CONF_BACKUP_DIR" ] ; then
|
||||
APACHE_CONF_BACKUP_DIR="$WORKING_DIR/"
|
||||
fi
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -280,6 +282,7 @@ _apachePath() {
|
||||
}
|
||||
|
||||
_restoreApache() {
|
||||
_initpath
|
||||
if ! _apachePath ; then
|
||||
return 1
|
||||
fi
|
||||
@ -300,6 +303,7 @@ _restoreApache() {
|
||||
}
|
||||
|
||||
_setApache() {
|
||||
_initpath
|
||||
if ! _apachePath ; then
|
||||
return 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user