mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-04-27 04:45:48 +03:00
[GH-ISSUE #70] raise an error if acme-dns can't listen/bind to a specified port. #25
Labels
No labels
Documentation
Documentation
bug
enhancement
feature request
feature request
help wanted
pull-request
question
security
security
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/acme-dns#25
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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 @jvanasco on GitHub (Apr 10, 2018).
Original GitHub issue: https://github.com/acme-dns/acme-dns/issues/70
while doing some debugging of firewall rules, I realized that acme-dns will start up fine as an unprivileged user who can't bind to port 53 (if that is the configured port). I think it should probably raise an error OR print a warning line in these situations.
@mearsten commented on GitHub (May 28, 2018):
#85 fixes that
@Ajedi32 commented on GitHub (Oct 31, 2018):
Pretty sure this is a duplicate of #118, and is now fixed in #122
@jvanasco commented on GitHub (Oct 31, 2018):
well, #118 is a duplicate of this - and it looks like printing a warning is handled by #122.
@joohoi does #122 only log a warning, or can it cause a fatal error if unable to bind?
@joohoi commented on GitHub (Oct 31, 2018):
Both, it calls
log.Fatal(err)which logs the error, and then exits. :)@jvanasco commented on GitHub (Oct 31, 2018):
Wonderful. Closing this! thanks for the fix, this has bugged me for months!