about summary refs log tree commit diff
path: root/src/nix-worker/nix-worker.cc
AgeCommit message (Collapse)AuthorFilesLines
2008-06-18 * Some refactoring: put the GC options / results in separate structs.Eelco Dolstra1-12/+13
* The garbage collector now also prints the number of blocks freed.
2008-06-14 * nix-worker: clean up the temporary root for the worker processes Eelco Dolstra1-0/+2
in /nix/var/nix/temproots.
2008-06-09 * Merged the no-bdb branch (-r10900:HEADEelco Dolstra1-1/+1
https://svn.nixos.org/repos/nix/nix/branches/no-bdb).
2008-04-09 * sockaddr_un doesn't allow path names of more than 108 characters.Eelco Dolstra1-3/+11
This isn't usually a problem, except that it causes tests to fail when performed in a directory with a very long path name. So chdir to the socket directory and use a relative path name.
2008-03-20 * Disable the don't-run-as-root sanity check because it breaks RPMEelco Dolstra1-0/+2
builds (which are done as root...).
2007-11-16 * Flag `--no-build-hook' to disable distributed builds.Eelco Dolstra1-2/+5
* queryDeriver in daemon mode: don't barf if the other side returns an empty string (which means there is no deriver).
2007-09-18 * Pass various options to the worker so that flags like -K or -j workEelco Dolstra1-1/+19
in multi-user Nix (NIX-72). * Client/worker: exchange a protocol version number for future compatibility.
2007-08-30 * Create the Nix daemon socket in a separate directoryEelco Dolstra1-1/+4
(/nix/var/nix/daemon-socket). This allows access to the Nix daemon to be restricted by setting the mode/ownership on that directory as desired, e.g. $ chmod 770 /nix/var/nix/daemon-socket $ chown root.wheel /nix/var/nix/daemon-socket to allow only users in the wheel group to use Nix. Setting the ownership on a socket is much trickier, since the socket must be deleted and recreated every time the daemon is started (which would require additional Nix configuration file directives to specify the mode/ownership, and wouldn't support arbitrary ACLs), some BSD variants appear to ignore permissions on sockets, and it's not clear whether the umask is respected on every platform when creating sockets.
2007-06-12 * Support queryDeriver() in multi-user installations.Eelco Dolstra1-0/+9
2007-03-28 * Handle ECONNRESET from the client. Also, don't abort() if there areEelco Dolstra1-4/+9
unexpected conditions in the SIGPOLL handler, since that messes up the Berkeley DB environment (which a client must never be able to trigger).
2007-02-22 * Handle EINTR in select().Eelco Dolstra1-3/+3
2007-02-21 * `nix-store --import' now also works in remote mode. The workerEelco Dolstra1-1/+35
always requires a signature on the archive. This is to ensure that unprivileged users cannot add Trojan horses to the Nix store.
2007-02-21 * Support exportPath() in remote mode.Eelco Dolstra1-0/+26
2006-12-12 * New primop builtins.filterSource, which can be used to filter filesEelco Dolstra1-2/+1
from a source directory. All files for which a predicate function returns true are copied to the store. Typical example is to leave out the .svn directory: stdenv.mkDerivation { ... src = builtins.filterSource (path: baseNameOf (toString path) != ".svn") ./source-dir; # as opposed to # src = ./source-dir; } This is important because the .svn directory influences the hash in a rather unpredictable and variable way.
2006-12-07 * Rename all those main.cc files.Eelco Dolstra1-0/+569