unbound-with-systemd: init

This introduces an unbound variant that is built with systemd support.
That means it is able to signal readiness to systemd once it did start
or finished reloading. This likely allows us to close a small gap during
bootup where the service is assumed up but doesn't respond to DNS
queries just yet.
This commit is contained in:
Andreas Rammhold 2020-05-07 13:15:04 +02:00
parent c07ce093ec
commit f6d570b258
No known key found for this signature in database
GPG key ID: E432E410B5E48C86

View file

@ -8076,7 +8076,11 @@ in
unclutter-xfixes = callPackage ../tools/misc/unclutter-xfixes { };
unbound = callPackage ../tools/networking/unbound { };
unbound = callPackage ../tools/networking/unbound {};
unbound-with-systemd = unbound.override {
withSystemd = true;
};
unicorn = callPackage ../development/libraries/unicorn { };