support individual ca path

This commit is contained in:
neil 2016-09-28 13:27:32 +08:00
commit 4dfc8b262c

59
acme.sh
View File

@ -1,6 +1,6 @@
#!/usr/bin/env sh #!/usr/bin/env sh
VER=2.5.8 VER=2.6.0
PROJECT_NAME="acme.sh" PROJECT_NAME="acme.sh"
@ -854,6 +854,7 @@ _mktemp() {
if mktemp 2>/dev/null ; then if mktemp 2>/dev/null ; then
return return
elif _contains "$(mktemp 2>&1)" "-t prefix" && mktemp -t "$PROJECT_NAME" 2>/dev/null ; then elif _contains "$(mktemp 2>&1)" "-t prefix" && mktemp -t "$PROJECT_NAME" 2>/dev/null ; then
#for Mac osx
return return
fi fi
fi fi
@ -1351,6 +1352,8 @@ __initHome() {
fi fi
DEFAULT_LOG_FILE="$LE_WORKING_DIR/$PROJECT_NAME.log" DEFAULT_LOG_FILE="$LE_WORKING_DIR/$PROJECT_NAME.log"
DEFAULT_CA_HOME="$LE_WORKING_DIR/ca"
} }
#[domain] [keylength] #[domain] [keylength]
@ -1369,6 +1372,10 @@ _initpath() {
fi fi
fi fi
if [ -z "$CA_HOME" ] ; then
CA_HOME="$DEFAULT_CA_HOME"
fi
if [ -z "$API" ] ; then if [ -z "$API" ] ; then
if [ -z "$STAGE" ] ; then if [ -z "$STAGE" ] ; then
API="$DEFAULT_CA" API="$DEFAULT_CA"
@ -1378,6 +1385,19 @@ _initpath() {
fi fi
fi fi
_API_HOST="$(echo "$API" | cut -d : -f 2 | tr -d '/')"
CA_DIR="$CA_HOME/$_API_HOST"
_DEFAULT_CA_CONF="$CA_DIR/ca.conf"
if [ -z "$CA_CONF" ] ; then
CA_CONF="$_DEFAULT_CA_CONF"
fi
if [ -f "$CA_CONF" ] ; then
. "$CA_CONF"
fi
if [ -z "$ACME_DIR" ] ; then if [ -z "$ACME_DIR" ] ; then
ACME_DIR="/home/.acme" ACME_DIR="/home/.acme"
fi fi
@ -1394,11 +1414,20 @@ _initpath() {
HTTP_HEADER="$LE_WORKING_DIR/http.header" HTTP_HEADER="$LE_WORKING_DIR/http.header"
fi fi
_DEFAULT_ACCOUNT_KEY_PATH="$LE_WORKING_DIR/account.key" _OLD_ACCOUNT_KEY="$LE_WORKING_DIR/account.key"
_OLD_ACCOUNT_JSON="$LE_WORKING_DIR/account.json"
_DEFAULT_ACCOUNT_KEY_PATH="$CA_DIR/account.key"
_DEFAULT_ACCOUNT_JSON_PATH="$CA_DIR/account.json"
if [ -z "$ACCOUNT_KEY_PATH" ] ; then if [ -z "$ACCOUNT_KEY_PATH" ] ; then
ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH" ACCOUNT_KEY_PATH="$_DEFAULT_ACCOUNT_KEY_PATH"
fi fi
if [ -z "$ACCOUNT_JSON_PATH" ] ; then
ACCOUNT_JSON_PATH="$_DEFAULT_ACCOUNT_JSON_PATH"
fi
_DEFAULT_CERT_HOME="$LE_WORKING_DIR" _DEFAULT_CERT_HOME="$LE_WORKING_DIR"
if [ -z "$CERT_HOME" ] ; then if [ -z "$CERT_HOME" ] ; then
CERT_HOME="$_DEFAULT_CERT_HOME" CERT_HOME="$_DEFAULT_CERT_HOME"
@ -1407,6 +1436,9 @@ _initpath() {
if [ -z "$1" ] ; then if [ -z "$1" ] ; then
return 0 return 0
fi fi
mkdir -p "$CA_DIR"
domain="$1" domain="$1"
_ilength="$2" _ilength="$2"
@ -1799,6 +1831,17 @@ registeraccount() {
_regAccount() { _regAccount() {
_initpath _initpath
if [ ! -f "$ACCOUNT_KEY_PATH" ] && [ -f "$_OLD_ACCOUNT_KEY" ]; then
_info "mv $_OLD_ACCOUNT_KEY to $ACCOUNT_KEY_PATH"
mv "$_OLD_ACCOUNT_KEY" "$ACCOUNT_KEY_PATH"
fi
if [ ! -f "$ACCOUNT_JSON_PATH" ] && [ -f "$_OLD_ACCOUNT_JSON" ]; then
_info "mv $_OLD_ACCOUNT_JSON to $ACCOUNT_JSON_PATH"
mv "$_OLD_ACCOUNT_JSON" "$ACCOUNT_JSON_PATH"
fi
if [ ! -f "$ACCOUNT_KEY_PATH" ] ; then if [ ! -f "$ACCOUNT_KEY_PATH" ] ; then
_acck="no" _acck="no"
if [ "$Le_Keylength" ] ; then if [ "$Le_Keylength" ] ; then
@ -1837,7 +1880,7 @@ _regAccount() {
fi fi
if [ "$code" = "" ] || [ "$code" = '201' ] ; then if [ "$code" = "" ] || [ "$code" = '201' ] ; then
echo "$response" > $LE_WORKING_DIR/account.json echo "$response" > $ACCOUNT_JSON_PATH
_info "Registered" _info "Registered"
elif [ "$code" = '409' ] ; then elif [ "$code" = '409' ] ; then
_info "Already registered" _info "Already registered"
@ -1911,6 +1954,7 @@ issue() {
if [ "$Le_Webroot" = "dns-cx" ] ; then if [ "$Le_Webroot" = "dns-cx" ] ; then
Le_Webroot="dns_cx" Le_Webroot="dns_cx"
fi fi
_debug "Using api: $API"
if [ ! "$IS_RENEW" ] ; then if [ ! "$IS_RENEW" ] ; then
_initpath $Le_Domain "$Le_Keylength" _initpath $Le_Domain "$Le_Keylength"
@ -1936,6 +1980,9 @@ issue() {
_savedomainconf "Le_RenewHook" "$Le_RenewHook" _savedomainconf "Le_RenewHook" "$Le_RenewHook"
_savedomainconf "Le_LocalAddress" "$Le_LocalAddress" _savedomainconf "Le_LocalAddress" "$Le_LocalAddress"
Le_API="$API"
_savedomainconf "Le_API" "$Le_API"
if [ "$Le_Alt" = "$NO_VALUE" ] ; then if [ "$Le_Alt" = "$NO_VALUE" ] ; then
Le_Alt="" Le_Alt=""
fi fi
@ -2453,6 +2500,7 @@ issue() {
Le_NextRenewTime=$(_math $Le_NextRenewTime - 86400) Le_NextRenewTime=$(_math $Le_NextRenewTime - 86400)
_savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime" _savedomainconf "Le_NextRenewTime" "$Le_NextRenewTime"
_on_issue_success _on_issue_success
if [ "$Le_RealCertPath$Le_RealKeyPath$Le_RealCACertPath$Le_ReloadCmd$Le_RealFullChainPath" ] ; then if [ "$Le_RealCertPath$Le_RealKeyPath$Le_RealCACertPath$Le_ReloadCmd$Le_RealFullChainPath" ] ; then
@ -2484,6 +2532,11 @@ renew() {
fi fi
. "$DOMAIN_CONF" . "$DOMAIN_CONF"
if [ "$Le_API" ] ; then
API="$Le_API"
fi
if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ] ; then if [ -z "$FORCE" ] && [ "$Le_NextRenewTime" ] && [ "$(_time)" -lt "$Le_NextRenewTime" ] ; then
_info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")" _info "Skip, Next renewal time is: $(__green "$Le_NextRenewTimeStr")"
_info "Add '$(__red '--force')' to force to renew." _info "Add '$(__red '--force')' to force to renew."