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
2d39b3df
Commit
2d39b3df
authored
Apr 17, 2016
by
Richard van Dijk
Committed by
neil
Apr 18, 2016
Browse files
fix renewAll bug
$CERT_HOME is required by renewAll, but wasn't initialized.
parent
cbd13a12
Changes
1
Hide whitespace changes
Inline
Side-by-side
acme.sh
View file @
2d39b3df
...
...
@@ -762,17 +762,17 @@ _initpath() {
ACCOUNT_KEY_PATH
=
"
$_DEFAULT_ACCOUNT_KEY_PATH
"
fi
_DEFAULT_CERT_HOME
=
"
$LE_WORKING_DIR
"
if
[
-z
"
$CERT_HOME
"
]
;
then
CERT_HOME
=
"
$_DEFAULT_CERT_HOME
"
fi
domain
=
"
$1
"
if
[
-z
"
$domain
"
]
;
then
return
0
fi
_DEFAULT_CERT_HOME
=
"
$LE_WORKING_DIR
"
if
[
-z
"
$CERT_HOME
"
]
;
then
CERT_HOME
=
"
$_DEFAULT_CERT_HOME
"
fi
domainhome
=
"
$CERT_HOME
/
$domain
"
mkdir
-p
"
$domainhome
"
...
...
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