* Need gzip in the Nix daemon's PATH. Forgot to commit this.

svn path=/nixos/trunk/; revision=14274
This commit is contained in:
Eelco Dolstra 2009-02-27 13:40:31 +00:00
parent f5b2ecdc13
commit 69ef41ea14

View File

@ -8,9 +8,9 @@
stop on shutdown
respawn
script
export PATH=${if config.nix.distributedBuilds then "${pkgs.openssh}/bin:" else ""}${pkgs.openssl}/bin:${nix}/bin:$PATH
export PATH=${if config.nix.distributedBuilds then "${pkgs.openssh}/bin:${pkgs.gzip}/bin:" else ""}${pkgs.openssl}/bin:${nix}/bin:$PATH
${nixEnvVars}
exec ${nix}/bin/nix-worker --daemon > /dev/null 2>&1
exec nice -10 ${nix}/bin/nix-worker --daemon > /dev/null 2>&1
end script
";