@cryptotaxi247 / infra-1 / commits / 92804f9e

Fixed the config of the supervisor for the tud.

svn path=/configurations/trunk/tud/; revision=7942

Martin Bravenboer committed Feb 20, 2007 at 21:47 UTC 92804f9e759c45136b2da33d607ee3bcf933f5ec
1 file changed +10 -6
supervisor/default.nix
+10 -6
@@ -8,9 +8,13 @@
8 # $ nix-build ./st-lab.nix --arg currentLoadDir \"/tmp/current-load\" -o tmp-supervisor
9 {currentLoadDir ? "/home/nix/buildfarm-state/current-load"}:
10
11 -(import ../../release/supervisor/supervisor.nix)
12 - { stateDir = "/home/nix/buildfarm-state";
13 - jobsURL = https://svn.cs.uu.nl:12443/repos/trace/configurations/trunk/tud/supervisor/jobs.conf;
14 - machinesList = ./machines;
15 - inherit currentLoadDir;
16 - }
11 +{
12 + supervisor =
13 + (import ../../../release/supervisor/supervisor.nix) {
14 + stateDir = "/home/nix/buildfarm-state";
15 + jobsURL = https://svn.cs.uu.nl:12443/repos/trace/configurations/trunk/tud/supervisor/jobs.conf;
16 + machinesList = ./machines;
17 + pkgsPath = "/etc/nixos/nixpkgs/pkgs";
18 + inherit currentLoadDir;
19 + };
20 +}