From ad035b52271cb374ff6ba699f521d75dc9ae66a4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 14:09:04 +0100 Subject: [PATCH] hydra-queue-runner: Enable core dumps --- hydra-module.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hydra-module.nix b/hydra-module.nix index 1e491ba0..059769fa 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -295,6 +295,10 @@ in ExecStopPost = "${cfg.package}/bin/hydra-queue-runner --unlock"; User = "hydra-queue-runner"; Restart = "always"; + + # Ensure we can get core dumps. + LimitCORE = "infinity"; + WorkingDirectory = "${baseDir}/queue-runner"; }; };