summaryrefslogtreecommitdiffstats
path: root/scripts/download.pl
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-30 19:47:17 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-30 19:47:17 +0000
commite889c1836356b6a8d41b8b1a63dbd4397acf5ed8 (patch)
tree4d3e56944a387b4054b88ce690caf674407f6250 /scripts/download.pl
parent9ccb9ccc88a10def6ba8b383433233a8a3624b05 (diff)
fix mirror order in download script
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@772 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/download.pl')
-rwxr-xr-xscripts/download.pl22
1 files changed, 13 insertions, 9 deletions
diff --git a/scripts/download.pl b/scripts/download.pl
index 607a9bde5..8042e2d07 100755
--- a/scripts/download.pl
+++ b/scripts/download.pl
@@ -5,13 +5,11 @@ use warnings;
my $target = shift @ARGV;
my $filename = shift @ARGV;
my $md5sum = shift @ARGV;
-my @mirrors = @ARGV;
+my @mirrors;
my $ok;
-@mirrors > 0 or die "Syntax: $0 <target dir> <filename> <md5sum> <mirror> [<mirror> ...]\n";
-
-push @mirrors, 'http://openwrt.inf.fh-brs.de/mirror';
+@ARGV > 0 or die "Syntax: $0 <target dir> <filename> <md5sum> <mirror> [<mirror> ...]\n";
sub download
{
@@ -56,10 +54,7 @@ sub cleanup
unlink "$target/$filename.md5sum";
}
-while (!$ok) {
- my $mirror = shift @mirrors;
- $mirror or die "No more mirrors to try - giving up.\n";
-
+foreach my $mirror (@ARGV) {
if ($mirror =~ /^\@SF\/(.+)$/) {
my $sfpath = $1;
open SF, "wget -t1 -q -O- 'http://prdownloads.sf.net/$sfpath/$filename' |";
@@ -70,8 +65,17 @@ while (!$ok) {
}
close SF;
} else {
- download($mirror);
+ push @mirrors, $mirror;
}
+}
+
+push @mirrors, 'http://openwrt.inf.fh-brs.de/mirror';
+
+while (!$ok) {
+ my $mirror = shift @mirrors;
+ $mirror or die "No more mirrors to try - giving up.\n";
+
+ download($mirror);
-f "$target/$filename" and $ok = 1;
}