From 953b77f07be3c1fdef3552ee98c5d26accdde4c1 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 2 Sep 2018 06:51:32 +0200 Subject: [PATCH] bird: set reloadIfChanged to true (#45924) This will trigger the reload instead of restart command if a definition changes, which is much more desireable for a routing daemon. --- nixos/modules/services/networking/bird.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix index 9f08cc0a79e..555733aab7c 100644 --- a/nixos/modules/services/networking/bird.nix +++ b/nixos/modules/services/networking/bird.nix @@ -44,6 +44,7 @@ let systemd.services.${variant} = { description = "BIRD Internet Routing Daemon (${descr})"; wantedBy = [ "multi-user.target" ]; + reloadIfChanged = true; serviceConfig = { Type = "forking"; Restart = "on-failure";