2011-10-10 21:11:08 +00:00
|
|
|
|
#! @perl@ -w @perlFlags@
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
|
|
use strict;
|
2011-10-10 21:11:08 +00:00
|
|
|
|
use Nix::Config;
|
|
|
|
|
use Nix::Manifest;
|
2011-11-29 13:01:24 +00:00
|
|
|
|
use Nix::Store;
|
2012-07-30 21:09:36 +00:00
|
|
|
|
use Nix::Utils;
|
2006-10-04 18:58:11 +00:00
|
|
|
|
use POSIX qw(strftime);
|
|
|
|
|
use File::Temp qw(tempdir);
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
|
STDOUT->autoflush(1);
|
|
|
|
|
|
2011-10-10 21:11:08 +00:00
|
|
|
|
my $logFile = "$Nix::Config::logDir/downloads";
|
2004-12-30 16:34:54 +00:00
|
|
|
|
|
2010-12-13 08:39:10 +00:00
|
|
|
|
# For queries, skip expensive calls to nix-hash etc. We're just
|
|
|
|
|
# estimating the expected download size.
|
|
|
|
|
my $fast = 1;
|
|
|
|
|
|
2012-07-27 14:47:36 +00:00
|
|
|
|
# ‘--insecure’ is fine because Nix verifies the hash of the result.
|
|
|
|
|
my $curl = "$Nix::Config::curl --fail --location --insecure";
|
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2011-04-10 23:22:46 +00:00
|
|
|
|
# Open the manifest cache and update it if necessary.
|
|
|
|
|
my $dbh = updateManifestDB();
|
2013-06-20 09:55:15 +00:00
|
|
|
|
exit 0 unless defined $dbh; # exit if there are no manifests
|
|
|
|
|
print "\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
|
|
|
2011-11-29 13:01:24 +00:00
|
|
|
|
# $hashCache->{$algo}->{$path} yields the $algo-hash of $path.
|
|
|
|
|
my $hashCache;
|
2010-11-17 17:32:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub parseHash {
|
|
|
|
|
my $hash = shift;
|
|
|
|
|
if ($hash =~ /^(.+):(.+)$/) {
|
|
|
|
|
return ($1, $2);
|
|
|
|
|
} else {
|
|
|
|
|
return ("md5", $hash);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Compute the most efficient sequence of downloads to produce the
|
|
|
|
|
# given path.
|
|
|
|
|
sub computeSmallestDownload {
|
|
|
|
|
my $targetPath = shift;
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2010-11-17 17:32:25 +00:00
|
|
|
|
# Build a graph of all store paths that might contribute to the
|
|
|
|
|
# construction of $targetPath, and the special node "start". The
|
|
|
|
|
# edges are either patch operations, or downloads of full NAR
|
|
|
|
|
# files. The latter edges only occur between "start" and a store
|
|
|
|
|
# path.
|
|
|
|
|
my %graph;
|
|
|
|
|
|
|
|
|
|
$graph{"start"} = {d => 0, pred => undef, edges => []};
|
|
|
|
|
|
|
|
|
|
my @queue = ();
|
|
|
|
|
my $queueFront = 0;
|
|
|
|
|
my %done;
|
|
|
|
|
|
|
|
|
|
sub addNode {
|
|
|
|
|
my $graph = shift;
|
|
|
|
|
my $u = shift;
|
|
|
|
|
$$graph{$u} = {d => 999999999999, pred => undef, edges => []}
|
|
|
|
|
unless defined $$graph{$u};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sub addEdge {
|
|
|
|
|
my $graph = shift;
|
|
|
|
|
my $u = shift;
|
|
|
|
|
my $v = shift;
|
|
|
|
|
my $w = shift;
|
|
|
|
|
my $type = shift;
|
|
|
|
|
my $info = shift;
|
|
|
|
|
addNode $graph, $u;
|
|
|
|
|
push @{$$graph{$u}->{edges}},
|
|
|
|
|
{weight => $w, start => $u, end => $v, type => $type, info => $info};
|
|
|
|
|
my $n = scalar @{$$graph{$u}->{edges}};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
push @queue, $targetPath;
|
|
|
|
|
|
|
|
|
|
while ($queueFront < scalar @queue) {
|
|
|
|
|
my $u = $queue[$queueFront++];
|
2010-11-17 17:54:49 +00:00
|
|
|
|
next if defined $done{$u};
|
2010-11-17 17:32:25 +00:00
|
|
|
|
$done{$u} = 1;
|
|
|
|
|
|
|
|
|
|
addNode \%graph, $u;
|
|
|
|
|
|
|
|
|
|
# If the path already exists, it has distance 0 from the
|
|
|
|
|
# "start" node.
|
|
|
|
|
if (isValidPath($u)) {
|
|
|
|
|
addEdge \%graph, "start", $u, 0, "present", undef;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
|
|
# Add patch edges.
|
2011-04-10 23:22:46 +00:00
|
|
|
|
my $patchList = $dbh->selectall_arrayref(
|
|
|
|
|
"select * from Patches where storePath = ?",
|
|
|
|
|
{ Slice => {} }, $u);
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2010-11-17 17:32:25 +00:00
|
|
|
|
foreach my $patch (@{$patchList}) {
|
|
|
|
|
if (isValidPath($patch->{basePath})) {
|
|
|
|
|
my ($baseHashAlgo, $baseHash) = parseHash $patch->{baseHash};
|
2011-11-29 13:01:24 +00:00
|
|
|
|
|
|
|
|
|
my $hash = $hashCache->{$baseHashAlgo}->{$patch->{basePath}};
|
|
|
|
|
if (!defined $hash) {
|
|
|
|
|
$hash = $fast && $baseHashAlgo eq "sha256"
|
|
|
|
|
? queryPathHash($patch->{basePath})
|
|
|
|
|
: hashPath($baseHashAlgo, $baseHashAlgo ne "md5", $patch->{basePath});
|
|
|
|
|
$hash =~ s/.*://;
|
|
|
|
|
$hashCache->{$baseHashAlgo}->{$patch->{basePath}} = $hash;
|
|
|
|
|
}
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2010-11-17 17:32:25 +00:00
|
|
|
|
next if $hash ne $baseHash;
|
|
|
|
|
}
|
|
|
|
|
push @queue, $patch->{basePath};
|
|
|
|
|
addEdge \%graph, $patch->{basePath}, $u, $patch->{size}, "patch", $patch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Add NAR file edges to the start node.
|
2011-04-10 23:22:46 +00:00
|
|
|
|
my $narFileList = $dbh->selectall_arrayref(
|
|
|
|
|
"select * from NARs where storePath = ?",
|
|
|
|
|
{ Slice => {} }, $u);
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2010-11-17 17:32:25 +00:00
|
|
|
|
foreach my $narFile (@{$narFileList}) {
|
|
|
|
|
# !!! how to handle files whose size is not known in advance?
|
2011-04-10 23:22:46 +00:00
|
|
|
|
# For now, assume some arbitrary size (1 GB).
|
|
|
|
|
# This has the side-effect of preferring non-Hydra downloads.
|
|
|
|
|
addEdge \%graph, "start", $u, ($narFile->{size} || 1000000000), "narfile", $narFile;
|
2010-11-17 17:32:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Run Dijkstra's shortest path algorithm to determine the shortest
|
|
|
|
|
# sequence of download and/or patch actions that will produce
|
|
|
|
|
# $targetPath.
|
|
|
|
|
|
|
|
|
|
my @todo = keys %graph;
|
|
|
|
|
|
|
|
|
|
while (scalar @todo > 0) {
|
|
|
|
|
|
|
|
|
|
# Remove the closest element from the todo list.
|
|
|
|
|
# !!! inefficient, use a priority queue
|
|
|
|
|
@todo = sort { -($graph{$a}->{d} <=> $graph{$b}->{d}) } @todo;
|
|
|
|
|
my $u = pop @todo;
|
|
|
|
|
|
|
|
|
|
my $u_ = $graph{$u};
|
|
|
|
|
|
|
|
|
|
foreach my $edge (@{$u_->{edges}}) {
|
|
|
|
|
my $v_ = $graph{$edge->{end}};
|
|
|
|
|
if ($v_->{d} > $u_->{d} + $edge->{weight}) {
|
|
|
|
|
$v_->{d} = $u_->{d} + $edge->{weight};
|
|
|
|
|
# Store the edge; to edge->start is actually the
|
|
|
|
|
# predecessor.
|
2011-04-10 23:22:46 +00:00
|
|
|
|
$v_->{pred} = $edge;
|
2010-11-17 17:32:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Retrieve the shortest path from "start" to $targetPath.
|
|
|
|
|
my @path = ();
|
|
|
|
|
my $cur = $targetPath;
|
|
|
|
|
return () unless defined $graph{$targetPath}->{pred};
|
|
|
|
|
while ($cur ne "start") {
|
|
|
|
|
push @path, $graph{$cur}->{pred};
|
|
|
|
|
$cur = $graph{$cur}->{pred}->{start};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return @path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
|
# Parse the arguments.
|
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
|
if ($ARGV[0] eq "--query") {
|
2007-08-12 00:29:28 +00:00
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
|
while (<STDIN>) {
|
2012-07-11 22:52:09 +00:00
|
|
|
|
chomp;
|
|
|
|
|
my ($cmd, @args) = split " ", $_;
|
2008-08-02 12:54:35 +00:00
|
|
|
|
|
|
|
|
|
if ($cmd eq "have") {
|
2012-07-11 22:52:09 +00:00
|
|
|
|
foreach my $storePath (@args) {
|
|
|
|
|
print "$storePath\n" if scalar @{$dbh->selectcol_arrayref("select 1 from NARs where storePath = ?", {}, $storePath)} > 0;
|
|
|
|
|
}
|
|
|
|
|
print "\n";
|
2007-08-12 00:29:28 +00:00
|
|
|
|
}
|
2008-08-02 12:54:35 +00:00
|
|
|
|
|
|
|
|
|
elsif ($cmd eq "info") {
|
2012-07-11 22:52:09 +00:00
|
|
|
|
foreach my $storePath (@args) {
|
2010-11-17 17:32:25 +00:00
|
|
|
|
|
2012-07-11 22:52:09 +00:00
|
|
|
|
my $infos = $dbh->selectall_arrayref(
|
|
|
|
|
"select * from NARs where storePath = ?",
|
|
|
|
|
{ Slice => {} }, $storePath);
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2012-07-11 22:52:09 +00:00
|
|
|
|
next unless scalar @{$infos} > 0;
|
|
|
|
|
my $info = @{$infos}[0];
|
|
|
|
|
|
|
|
|
|
print "$storePath\n";
|
|
|
|
|
print "$info->{deriver}\n";
|
|
|
|
|
my @references = split " ", $info->{refs};
|
|
|
|
|
print scalar @references, "\n";
|
|
|
|
|
print "$_\n" foreach @references;
|
|
|
|
|
|
|
|
|
|
my @path = computeSmallestDownload $storePath;
|
|
|
|
|
|
|
|
|
|
my $downloadSize = 0;
|
|
|
|
|
while (scalar @path > 0) {
|
|
|
|
|
my $edge = pop @path;
|
|
|
|
|
my $u = $edge->{start};
|
|
|
|
|
my $v = $edge->{end};
|
|
|
|
|
if ($edge->{type} eq "patch") {
|
|
|
|
|
$downloadSize += $edge->{info}->{size} || 0;
|
|
|
|
|
}
|
|
|
|
|
elsif ($edge->{type} eq "narfile") {
|
|
|
|
|
$downloadSize += $edge->{info}->{size} || 0;
|
|
|
|
|
}
|
2010-11-17 17:32:25 +00:00
|
|
|
|
}
|
2011-04-10 23:22:46 +00:00
|
|
|
|
|
2012-07-11 22:52:09 +00:00
|
|
|
|
print "$downloadSize\n";
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2012-07-11 22:52:09 +00:00
|
|
|
|
my $narSize = $info->{narSize} || 0;
|
|
|
|
|
print "$narSize\n";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print "\n";
|
2007-08-12 00:29:28 +00:00
|
|
|
|
}
|
2012-07-27 14:47:36 +00:00
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
|
else { die "unknown command `$cmd'"; }
|
2007-08-12 00:29:28 +00:00
|
|
|
|
}
|
2008-08-02 12:54:35 +00:00
|
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
|
exit 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elsif ($ARGV[0] ne "--substitute") {
|
2010-02-04 09:38:09 +00:00
|
|
|
|
die;
|
2007-08-12 00:29:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-10-02 18:08:59 +00:00
|
|
|
|
die unless scalar @ARGV == 3;
|
2007-08-12 00:29:28 +00:00
|
|
|
|
my $targetPath = $ARGV[1];
|
2012-10-02 18:08:59 +00:00
|
|
|
|
my $destPath = $ARGV[2];
|
2010-12-13 08:39:10 +00:00
|
|
|
|
$fast = 0;
|
2007-08-12 00:29:28 +00:00
|
|
|
|
|
|
|
|
|
|
2008-08-02 12:54:35 +00:00
|
|
|
|
# Create a temporary directory.
|
|
|
|
|
my $tmpDir = tempdir("nix-download.XXXXXX", CLEANUP => 1, TMPDIR => 1)
|
|
|
|
|
or die "cannot create a temporary directory";
|
|
|
|
|
|
|
|
|
|
my $tmpNar = "$tmpDir/nar";
|
|
|
|
|
my $tmpNar2 = "$tmpDir/nar2";
|
|
|
|
|
|
|
|
|
|
|
2008-07-18 15:34:46 +00:00
|
|
|
|
open LOGFILE, ">>$logFile" or die "cannot open log file $logFile";
|
|
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
|
my $date = strftime ("%F %H:%M:%S UTC", gmtime (time));
|
|
|
|
|
print LOGFILE "$$ get $targetPath $date\n";
|
|
|
|
|
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR "\n*** Trying to download/patch `$targetPath'\n";
|
2007-08-12 00:29:28 +00:00
|
|
|
|
|
|
|
|
|
|
2010-11-17 17:32:25 +00:00
|
|
|
|
# Compute the shortest path.
|
2010-12-13 08:39:10 +00:00
|
|
|
|
my @path = computeSmallestDownload $targetPath;
|
2010-11-17 17:32:25 +00:00
|
|
|
|
die "don't know how to produce $targetPath\n" if scalar @path == 0;
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
|
|
|
2011-07-13 14:05:54 +00:00
|
|
|
|
# We don't need the manifest anymore, so close it as an optimisation:
|
|
|
|
|
# if we still have SQLite locks blocking other processes (we
|
|
|
|
|
# shouldn't), this gets rid of them.
|
|
|
|
|
$dbh->disconnect;
|
|
|
|
|
|
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
|
# Traverse the shortest path, perform the actions described by the
|
|
|
|
|
# edges.
|
|
|
|
|
my $curStep = 1;
|
|
|
|
|
my $maxStep = scalar @path;
|
|
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
|
my $finalNarHash;
|
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
|
while (scalar @path > 0) {
|
|
|
|
|
my $edge = pop @path;
|
|
|
|
|
my $u = $edge->{start};
|
|
|
|
|
my $v = $edge->{end};
|
|
|
|
|
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR "\n*** Step $curStep/$maxStep: ";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
|
|
if ($edge->{type} eq "present") {
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR "using already present path `$v'\n";
|
2004-12-30 16:34:54 +00:00
|
|
|
|
print LOGFILE "$$ present $v\n";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
|
|
|
|
|
if ($curStep < $maxStep) {
|
|
|
|
|
# Since this is not the last step, the path will be used
|
|
|
|
|
# as a base to one or more patches. So turn the base path
|
|
|
|
|
# into a NAR archive, to which we can apply the patch.
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR " packing base path...\n";
|
2011-10-10 21:11:08 +00:00
|
|
|
|
system("$Nix::Config::binDir/nix-store --dump $v > $tmpNar") == 0
|
2006-09-25 10:44:27 +00:00
|
|
|
|
or die "cannot dump `$v'";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elsif ($edge->{type} eq "patch") {
|
|
|
|
|
my $patch = $edge->{info};
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR "applying patch `$patch->{url}' to `$u' to create `$v'\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2004-12-30 16:34:54 +00:00
|
|
|
|
print LOGFILE "$$ patch $patch->{url} $patch->{size} $patch->{baseHash} $u $v\n";
|
|
|
|
|
|
2004-12-13 13:47:38 +00:00
|
|
|
|
# Download the patch.
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR " downloading patch...\n";
|
2012-07-27 14:47:36 +00:00
|
|
|
|
my $patchPath = "$tmpDir/patch";
|
2012-10-17 20:45:04 +00:00
|
|
|
|
checkURL $patch->{url};
|
2012-07-27 14:47:36 +00:00
|
|
|
|
system("$curl '$patch->{url}' -o $patchPath") == 0
|
|
|
|
|
or die "cannot download patch `$patch->{url}'\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2005-05-10 14:22:36 +00:00
|
|
|
|
# Apply the patch to the NAR archive produced in step 1 (for
|
|
|
|
|
# the already present path) or a later step (for patch sequences).
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR " applying patch...\n";
|
2011-10-10 21:11:08 +00:00
|
|
|
|
system("$Nix::Config::libexecDir/bspatch $tmpNar $tmpNar2 $patchPath") == 0
|
2012-07-27 14:47:36 +00:00
|
|
|
|
or die "cannot apply patch `$patchPath' to $tmpNar\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2005-05-10 14:22:36 +00:00
|
|
|
|
if ($curStep < $maxStep) {
|
|
|
|
|
# The archive will be used as the base of the next patch.
|
2005-09-15 15:21:35 +00:00
|
|
|
|
rename "$tmpNar2", "$tmpNar" or die "cannot rename NAR archive: $!";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
# This was the last patch. Unpack the final NAR archive
|
|
|
|
|
# into the target path.
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR " unpacking patched archive...\n";
|
2012-10-02 18:08:59 +00:00
|
|
|
|
system("$Nix::Config::binDir/nix-store --restore $destPath < $tmpNar2") == 0
|
2012-09-21 19:02:33 +00:00
|
|
|
|
or die "cannot unpack $tmpNar2 to `$v'\n";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
}
|
2009-02-19 23:46:37 +00:00
|
|
|
|
|
|
|
|
|
$finalNarHash = $patch->{narHash};
|
2004-12-13 13:47:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
elsif ($edge->{type} eq "narfile") {
|
|
|
|
|
my $narFile = $edge->{info};
|
2012-09-21 19:02:33 +00:00
|
|
|
|
print STDERR "downloading `$narFile->{url}' to `$v'\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2009-02-19 23:46:37 +00:00
|
|
|
|
my $size = $narFile->{size} || -1;
|
|
|
|
|
print LOGFILE "$$ narfile $narFile->{url} $size $v\n";
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
2012-10-17 20:45:04 +00:00
|
|
|
|
checkURL $narFile->{url};
|
2012-09-19 21:33:42 +00:00
|
|
|
|
|
|
|
|
|
my $decompressor =
|
|
|
|
|
$narFile->{compressionType} eq "bzip2" ? "$Nix::Config::bzip2 -d" :
|
|
|
|
|
$narFile->{compressionType} eq "xz" ? "$Nix::Config::xz -d" :
|
|
|
|
|
die "unknown compression type `$narFile->{compressionType}'";
|
|
|
|
|
|
2005-05-10 14:22:36 +00:00
|
|
|
|
if ($curStep < $maxStep) {
|
|
|
|
|
# The archive will be used a base to a patch.
|
2012-09-19 21:33:42 +00:00
|
|
|
|
system("$curl '$narFile->{url}' | $decompressor > $tmpNar") == 0
|
2012-09-21 19:02:33 +00:00
|
|
|
|
or die "cannot download and unpack `$narFile->{url}' to `$v'\n";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
} else {
|
2012-09-21 19:02:33 +00:00
|
|
|
|
# Unpack the archive to the target path.
|
2012-10-02 18:08:59 +00:00
|
|
|
|
system("$curl '$narFile->{url}' | $decompressor | $Nix::Config::binDir/nix-store --restore '$destPath'") == 0
|
2012-09-21 19:02:33 +00:00
|
|
|
|
or die "cannot download and unpack `$narFile->{url}' to `$v'\n";
|
2005-05-10 14:22:36 +00:00
|
|
|
|
}
|
2009-02-19 23:46:37 +00:00
|
|
|
|
|
|
|
|
|
$finalNarHash = $narFile->{narHash};
|
2004-12-13 13:47:38 +00:00
|
|
|
|
}
|
2005-05-10 14:22:36 +00:00
|
|
|
|
|
|
|
|
|
$curStep++;
|
2004-12-13 13:47:38 +00:00
|
|
|
|
}
|
2004-12-30 16:34:54 +00:00
|
|
|
|
|
|
|
|
|
|
2012-07-27 16:16:02 +00:00
|
|
|
|
# Tell Nix about the expected hash so it can verify it.
|
2012-07-27 14:47:36 +00:00
|
|
|
|
die "cannot check integrity of the downloaded path since its hash is not known\n"
|
|
|
|
|
unless defined $finalNarHash;
|
2012-07-27 16:16:02 +00:00
|
|
|
|
print "$finalNarHash\n";
|
2009-02-19 23:46:37 +00:00
|
|
|
|
|
|
|
|
|
|
2011-11-29 13:01:24 +00:00
|
|
|
|
print STDERR "\n";
|
2004-12-30 16:34:54 +00:00
|
|
|
|
print LOGFILE "$$ success\n";
|
|
|
|
|
close LOGFILE;
|