From 6411d991c72443cfe2beac22b74edb32d12922f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 14 Jun 2012 10:17:33 +0200 Subject: [PATCH] hydra-module: Fix typo in the job name in `checkSpace'. --- hydra-module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hydra-module.nix b/hydra-module.nix index 0f362129..e47ad3b2 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -207,10 +207,10 @@ in '' #! /bin/sh if [ $(($(stat -f -c '%a' /nix/store) * $(stat -f -c '%S' /nix/store))) -lt $((${toString cfg.minimumDiskFree} * 1024**3)) ]; then - stop hydra-queue-runner + stop hydra_queue_runner fi if [ $(($(stat -f -c '%a' /nix/store) * $(stat -f -c '%S' /nix/store))) -lt $((${toString cfg.minimumDiskFreeEvaluator} * 1024**3)) ]; then - stop hydra-evaluator + stop hydra_evaluator fi ''; compressLogs = pkgs.writeScript "compress-logs" ''