Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
ea455f73
Commit
ea455f73
authored
Mar 07, 2016
by
theit8514
Browse files
Add post-renew hook for executing commands when certificate was renewed successfully.
parent
d6863a09
Changes
1
Show whitespace changes
Inline
Side-by-side
le.sh
View file @
ea455f73
...
...
@@ -389,6 +389,9 @@ _initpath() {
domainhome
=
"
$LE_WORKING_DIR
/
$domain
"
mkdir
-p
"
$domainhome
"
if
[
-z
"
$DOMAIN_PATH
"
]
;
then
DOMAIN_PATH
=
"
$domainhome
"
fi
if
[
-z
"
$DOMAIN_CONF
"
]
;
then
DOMAIN_CONF
=
"
$domainhome
/
$Le_Domain
.conf"
fi
...
...
@@ -409,6 +412,9 @@ _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
}
...
...
@@ -956,6 +962,9 @@ 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
}
...
...
@@ -988,12 +997,14 @@ renewAll() {
Le_ReloadCmd
=
""
DOMAIN_CONF
=
""
DOMAIN_PATH
=
""
DOMAIN_SSL_CONF
=
""
CSR_PATH
=
""
CERT_KEY_PATH
=
""
CERT_PATH
=
""
CA_CERT_PATH
=
""
ACCOUNT_KEY_PATH
=
""
POST_RENEW_PATH
=
""
wellknown_path
=
""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment