mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-13 23:23:32 +01:00
improve error management on a domain request #215
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @M-M-M-M on GitHub (Apr 28, 2017).
What happens?
If you have several lines on domains.txt file then if an error is occurring on one linge dehydrated is exiting without working on further lines.
What is expected?
Reporting the error for the relevant line and certificate and continuing on next lines.
How to reproduce it?
DNS entries for www.example.com, wordpress.example.com and mail.example.com are corrects.
run dehydrated to create successfully the two certificates.
run dehydrated
Getting an error message like:
==> dehydrated is not trying to work on second line/certificate mail.example.com nor on third line/certificate new.example.com
Any error on one line should not prohibited dehydrated to work on other lines.
cause
_exiterr function used to display the error is exiting the full process and not stopping only the failing line/certificate...
@txr13 commented on GitHub (Apr 29, 2017):
Have you tried using
--keep-going?@M-M-M-M commented on GitHub (Apr 29, 2017):
No, I didn't. Thank you for the notice
I have added PARAM_KEEP_GOING="yes" in config file.