Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
letsencrypt.sh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
letsencrypt.sh
Commits
34565c19
Commit
34565c19
authored
Feb 23, 2016
by
BtbN
Committed by
Lukas Schauer
Aug 03, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for --keep-going in cron mode
Fixes #154
parent
ca0249c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
letsencrypt.sh
letsencrypt.sh
+12
-1
No files found.
letsencrypt.sh
View file @
34565c19
...
...
@@ -754,7 +754,12 @@ command_sign_domains() {
fi
# shellcheck disable=SC2086
sign_domain
${
line
}
if
[[
"
${
PARAM_KEEP_GOING
:-}
"
=
"yes"
]]
;
then
sign_domain
${
line
}
&
wait
$!
||
true
else
sign_domain
${
line
}
fi
done
# remove temporary domains.txt file if used
...
...
@@ -995,6 +1000,12 @@ main() {
fi
;;
# PARAM_Usage: --keep-going (-g)
# PARAM_Description: Keep going after encountering an error while creating/renewing multiple certificates in cron mode
--keep-going
|
-g
)
PARAM_KEEP_GOING
=
"yes"
;;
# PARAM_Usage: --force (-x)
# PARAM_Description: Force renew of certificate even if it is longer valid than value in RENEW_DAYS
--force
|
-x
)
...
...
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