aboutsummaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2020-05-07 13:15:04 +0200
committerAndreas Rammhold <andreas@rammhold.de>2020-11-03 13:15:54 +0100
commitf6d570b2589b61c4605f19bca0cba2ce1f076d44 (patch)
tree66f99143e0c2241b8ce4256fdba68e6c7cf58ed6 /pkgs
parentc07ce093ecc6a62e10a9abff39e96a27540c3fbc (diff)
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.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fbad7d9145b2..3a75ed3c391a 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -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 { };