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
06625071
Commit
06625071
authored
Apr 16, 2016
by
neil
Browse files
add `--days` only valid for `-issue` command.
parent
b5eb4b90
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
06625071
...
...
@@ -150,7 +150,8 @@ Parameters:
--home Specifies the home dir for acme.sh .
--useragent Specifies the user agent string. it will be saved for future use too.
--accountemail Specifies the account email for registering, Only valid for the '--install' command.
--accountkey Specifyes the account key path, Only valid for the '--install' command.
--accountkey Specifies the account key path, Only valid for the '--install' command.
--days Specifies the days to renew the cert when using '--issue' command. The max value is 80 days.
```
...
...
acme.sh
View file @
06625071
...
...
@@ -1366,7 +1366,7 @@ issue() {
Le_CertCreateTimeStr
=
$(
date
-u
)
_setopt
"
$DOMAIN_CONF
"
"Le_CertCreateTimeStr"
"="
"
\"
$Le_CertCreateTimeStr
\"
"
if
[[
!
"
$Le_RenewalDays
"
]]
;
then
if
[[
-z
"
$Le_RenewalDays
"
]]
||
[[
"
$Le_RenewalDays
"
-lt
"0"
]]
||
[[
"
$Le_RenewalDays
"
-gt
"80
"
]]
;
then
Le_RenewalDays
=
80
fi
...
...
@@ -1895,7 +1895,8 @@ Parameters:
--home Specifies the home dir for
$PROJECT_NAME
.
--useragent Specifies the user agent string. it will be saved for future use too.
--accountemail Specifies the account email for registering, Only valid for the '--install' command.
--accountkey Specifyes the account key path, Only valid for the '--install' command.
--accountkey Specifies the account key path, Only valid for the '--install' command.
--days Specifies the days to renew the cert when using '--issue' command. The max value is 80 days.
"
}
...
...
@@ -2128,6 +2129,11 @@ _process() {
ACCOUNT_KEY_PATH
=
"
$_accountkey
"
shift
;;
--days
)
_days
=
"
$2
"
Le_RenewalDays
=
"
$_days
"
shift
;;
*
)
_err
"Unknown parameter :
$1
"
return
1
...
...
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