unbound.service.in: do not fork into the background#83
Merged
Conversation
This is needed when unbound config doesn't set "do-daemonize: no" by itself otherwise starting service fails with: systemd[1]: unbound.service: Got notification message from PID <PID>, but reception only permitted for main PID which is currently not known https://github.com/NLnetLabs/unbound/blob/release-1.9.3/doc/example.conf.in#L236
wcawijngaards
added a commit
that referenced
this pull request
Sep 20, 2019
- Merge #83 from Maryse47: contrib/unbound.service.in: do not fork into the background.
Member
|
Thanks! Yes, that would make sure. Merged. |
jedisct1
added a commit
to jedisct1/unbound
that referenced
this pull request
Sep 21, 2019
* nlnet/master: (22 commits) Changelog entry for NLnetLabs#83 - Merge NLnetLabs#83 from Maryse47: contrib/unbound.service.in: do not fork into the background. unbound.service.in: do not fork into the background Changelog entry for NLnetLabs#81. - Merge NLnetLabs#81 from Maryse47: Consistently use /dev/urandom instead of /dev/random in scripts and docs. (Changelog entry for NLnetLabs#82). - Merge NLnetLabs#82 from hardfalcon: Downgrade CAP_NET_ADMIN to CAP_NET_RAW in unbound.service. Downgrade CAP_NET_ADMIN to CAP_NET_RAW in unbound.service Consistently use /dev/urandom instead of /dev/random in scripts and docs - Merge NLnetLabs#80 from stasic: Improve wording in man page. (Changelog entry for merge) Improve wording in man page - Fix wrong response ttl for prepended short CNAME ttls, this would create a wrong zero_ttl response count with serve-expired enabled. - Fix for oss-fuzz build warning. - Fix fix for NLnetLabs#78 to also free service callback struct. - oss-fuzz badge on README.md. - Merge pull request NLnetLabs#76 from Maryse47: Improvements and fixes for systemd unbound.service. (Changelog note for merge of NLnetLabs#76). - Fix NLnetLabs#78: Memory leak in outside_network.c. Improvements and fixes for systemd unbound.service - Use explicit bzero for wiping clear buffer of hash in cachedb, reported by Eric Sesterhenn from X41 D-Sec. - Fix NLnetLabs#72: configure --with-syslog-facility=LOCAL0-7 with default LOG_DAEMON (as before) can set the syslog facility that the server uses to log messages. - Fix NLnetLabs#71: fix openssl error squelch commit compilation error. - squelch DNS over TLS errors 'ssl handshake failed crypto error' on low verbosity, they show on verbosity 3 (query details), because there is a high volume and the operator cannot do anything for the remote failure. Specifically filters the high volume errors. - updated Makefile dependencies. ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is needed when unbound config doesn't set do-daemonize: no by itself otherwise starting service fails with:
systemd[1]: unbound.service: Got notification message from PID <PID>, but reception only permitted for main PID which is currently not known@wcawijngaards