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

Author:    eelco @ rev 14274

svn path=/nixos/branches/fix-style/; revision=14444
This commit is contained in:
Nicolas Pierron 2009-03-07 18:01:33 +00:00
parent 08f32ca62a
commit 6013de33f8

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
";