From 15e5ad6c7c0c3b5a0a8c3b61de6dca9a7f731618 Mon Sep 17 00:00:00 2001 From: Matt Layher Date: Sun, 9 Aug 2020 13:24:10 -0400 Subject: [PATCH] nixos/corerad: use SIGHUP to restart the service Signed-off-by: Matt Layher --- nixos/modules/services/networking/corerad.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/corerad.nix b/nixos/modules/services/networking/corerad.nix index 1c414c53a98..d90a5923bc6 100644 --- a/nixos/modules/services/networking/corerad.nix +++ b/nixos/modules/services/networking/corerad.nix @@ -81,6 +81,7 @@ in { NotifyAccess = "main"; ExecStart = "${getBin cfg.package}/bin/corerad -c=${cfg.configFile}"; Restart = "on-failure"; + RestartKillSignal = "SIGHUP"; }; }; };