Author: eelco Date: 2010-06-21 12:51:48 +0000 (Mon, 21 Jun 2010) New Revision: 22356
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22356&view=rev Modified: configurations/trunk/tud/common.nix configurations/trunk/tud/hydra.nix Log: * scheduler -> evaluator. Changes: Modified: configurations/trunk/tud/common.nix =================================================================== --- configurations/trunk/tud/common.nix 2010-06-21 12:19:34 UTC (rev 22355) +++ configurations/trunk/tud/common.nix 2010-06-21 12:51:48 UTC (rev 22356) @@ -18,7 +18,7 @@ nix.extraOptions = '' - fsync-metadata = true + fsync-metadata = false ''; services.zabbixAgent.enable = true; Modified: configurations/trunk/tud/hydra.nix =================================================================== --- configurations/trunk/tud/hydra.nix 2010-06-21 12:19:34 UTC (rev 22355) +++ configurations/trunk/tud/hydra.nix 2010-06-21 12:51:48 UTC (rev 22356) @@ -35,7 +35,7 @@ } ]; - swapDevices = [ { label = "swap" ; } ]; + #swapDevices = [ { label = "swap" ; } ]; nix = { maxJobs = 0; @@ -85,10 +85,10 @@ exec = "${pkgs.su}/bin/su - hydra -c 'hydra_server.pl > /home/hydra/data/server.log 2>&1'"; }; - jobs.hydra_scheduler = - { name = "hydra-scheduler"; + jobs.hydra_evaluator = + { name = "hydra-evaluator"; startOn = "started network-interfaces"; - exec = "${pkgs.su}/bin/su - hydra -c 'hydra_scheduler.pl > /home/hydra/data/scheduler.log 2>&1'"; + exec = "${pkgs.su}/bin/su - hydra -c 'hydra_evaluator.pl > /home/hydra/data/evaluator.log 2>&1'"; }; jobs.hydra_queue_runner = _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
