From 25b5a1b9c893b4c46cd89a3e4d445a994aff05ca Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Tue, 1 Sep 2009 08:41:42 +0000 Subject: use https to download the mirrorlist from api.mandriva.com --- perl-install/install/http.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/install/http.pm') diff --git a/perl-install/install/http.pm b/perl-install/install/http.pm index 236fd745f..1ef8755b3 100644 --- a/perl-install/install/http.pm +++ b/perl-install/install/http.pm @@ -8,8 +8,8 @@ sub close() { } sub getFile { - my ($url) = @_; - my ($_size, $fh) = get_file_and_size($url) or return; + my ($url, %o_options) = @_; + my ($_size, $fh) = get_file_and_size($url, %o_options) or return; $fh; } @@ -30,7 +30,7 @@ sub get_file_and_size_ { } sub get_file_and_size { - my ($url) = @_; + my ($url, %o_options) = @_; # can be used for ftp urls (with http proxy) my ($host) = parse_http_url($url); @@ -54,7 +54,7 @@ sub get_file_and_size { urpm::download::set_cmdline_proxy(http_proxy => "http://$proxy/"); } - my $res = eval { urpm::download::sync_url($urpm, $url, dir => $cachedir) }; + my $res = eval { urpm::download::sync_url($urpm, $url, %o_options, dir => $cachedir) }; if ($res) { open(my $f, $file); (-s $file, $f); -- cgit v1.2.1