Write Hydra roots as regular files instead of symlinks

Note that this requires at least NixOS/Nix@1c208f2b7e.
This commit is contained in:
Eelco Dolstra 2014-08-01 17:24:55 +02:00
parent 7351752066
commit 69e3aa0438
3 changed files with 6 additions and 10 deletions

View file

@ -78,13 +78,9 @@ sub gcRootFor {
sub registerRoot {
my ($path) = @_;
my $link = gcRootFor $path;
if (!-l $link) {
symlink($path, $link)
or die "cannot create GC root `$link' to `$path'";
}
open ROOT, ">$link" or die "cannot create GC root `$link' to `$path'";
close ROOT;
}

View file

@ -32,7 +32,7 @@ closedir DIR;
my @actual_roots = ();
foreach my $link (@roots) {
next if $link eq "." || $link eq "..";
push @actual_roots, readlink "$gcRootsDir/$link";
push @actual_roots, $Nix::Config::storeDir . "/" . $link;
}
# Don't delete a nix-cache-info file, if present