Commit 18f3c1fb authored by joris's avatar joris
Browse files

services/squid: explicit usage of coreutils' kill on ExecReload

parent a5dff5b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ in
      serviceConfig = {
        PIDFile="/run/squid.pid";
        ExecStart  = "${cfg.package}/bin/squid --foreground -YCs -f ${squidConfig}";
        ExecReload="kill -HUP $MAINPID";
        ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
        KillMode="mixed";
        NotifyAccess="all";
      };