diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-06-19 10:56:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-06-19 10:56:09 +0000 |
commit | 938983fb49d353314ad046b9f2ccc3c7ce6711c5 (patch) | |
tree | e03f32b4af25f46ec86c6a0d7d83ec4edcc956ab /perl-install/install/http.pm | |
parent | 71a4ec0bc856e7d9c97edba06b990a962c8ade08 (diff) | |
download | drakx-938983fb49d353314ad046b9f2ccc3c7ce6711c5.tar drakx-938983fb49d353314ad046b9f2ccc3c7ce6711c5.tar.gz drakx-938983fb49d353314ad046b9f2ccc3c7ce6711c5.tar.bz2 drakx-938983fb49d353314ad046b9f2ccc3c7ce6711c5.tar.xz drakx-938983fb49d353314ad046b9f2ccc3c7ce6711c5.zip |
- auto_install: allow "automatic=met:http,ser:server,dir:/pub/dir
kickstart=/pub/auto_inst.cfg" to get http://server/pub/auto_inst.cfg (#31474)
Diffstat (limited to 'perl-install/install/http.pm')
-rw-r--r-- | perl-install/install/http.pm | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/perl-install/install/http.pm b/perl-install/install/http.pm index 75d026d0d..bf59c273b 100644 --- a/perl-install/install/http.pm +++ b/perl-install/install/http.pm @@ -14,6 +14,23 @@ sub getFile { my ($_size, $fh) = get_file_and_size($url) or return; $fh; } + +sub parse_url { + my ($url) = @_; + $url =~ m,^(?:http|ftp)://([^/:]+)(?::(\d+))?(/\S*)?$,; +} + +sub get_file_and_size_ { + my ($f, $url) = @_; + + if ($f =~ m!^/!) { + my ($host, $port, $_path) = parse_url($url); + get_file_and_size("http://$host" . ($port ? ":$port" : '') . $f); + } else { + get_file_and_size("$url/$f"); + } +} + sub get_file_and_size { local ($^W) = 0; @@ -21,7 +38,7 @@ sub get_file_and_size { $sock->close if $sock; # can be used for ftp urls (with http proxy) - my ($host, $port, $path) = $url =~ m,^(?:http|ftp)://([^/:]+)(?::(\d+))?(/\S*)?$,; + my ($host, $port, $path) = parse_url($url); defined $host or return undef; my $use_http_proxy = $ENV{PROXY} && $ENV{PROXYPORT}; |