summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-09-06 09:38:03 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-09-06 09:38:03 +0000
commit68056bcdfaa733cabef68e1cac5104842a2a7e75 (patch)
tree1574693c14b4985e2cb81049b52a0a1564cbce73 /perl-install/install_any.pm
parentf938169defca430389beefecf789b9c00eda854a (diff)
downloaddrakx-68056bcdfaa733cabef68e1cac5104842a2a7e75.tar
drakx-68056bcdfaa733cabef68e1cac5104842a2a7e75.tar.gz
drakx-68056bcdfaa733cabef68e1cac5104842a2a7e75.tar.bz2
drakx-68056bcdfaa733cabef68e1cac5104842a2a7e75.tar.xz
drakx-68056bcdfaa733cabef68e1cac5104842a2a7e75.zip
Make the network supplementary media probe able to find an hdlists file
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r--perl-install/install_any.pm13
1 files changed, 11 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm
index ae52df299..057fe4115 100644
--- a/perl-install/install_any.pm
+++ b/perl-install/install_any.pm
@@ -441,8 +441,8 @@ sub selectSupplMedia {
useMedium($medium_name);
#- probe for an hdlists file and then look for all hdlists listed herein
- eval { pkgs::psUsingHdlists($o, $suppl_method, "/mnt/cdrom/media/media_info/hdlists", $o->{packages}, '1s') };
- log::l("psUsingHdlists failed: $@");
+ eval { pkgs::psUsingHdlists($o, $suppl_method, "/mnt/cdrom/", $o->{packages}, $medium_name) };
+ log::l("psUsingHdlists failed: $@") if $@;
#- copy latest compssUsers.pl and rpmsrate somewhere locally
getAndSaveFile("/mnt/cdrom/media/media_info/compssUsers.pl", "/tmp/compssUsers.pl");
@@ -468,6 +468,15 @@ sub selectSupplMedia {
my $url = $o->ask_from_entry('', N("URL of the mirror?")) or return '';
useMedium($medium_name);
require "$suppl_method.pm";
+ #- first, try to find an hdlists file
+ eval { pkgs::psUsingHdlists($o, $suppl_method, "$url/", $o->{packages}, $medium_name) };
+ if ($@) {
+ log::l("psUsingHdlists failed: $@");
+ } else {
+ useMedium($prev_asked_medium); #- back to main medium
+ return $suppl_method;
+ }
+ #- then probe for an hdlist.cz
my $f = eval {
if ($suppl_method eq 'http') {
http::getFile("$url/media_info/hdlist.cz");