summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-07-19 02:03:36 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2004-07-19 02:03:36 +0000
commite4ffed4ddafea0cb5fc3e0ded50c5946a69b6e96 (patch)
tree207e1488b602900ab33a9f1020ee30dfecaadc5a /urpm
parent554a1450bf4112b39b7cae581a41677d4ea9c116 (diff)
downloadurpmi-e4ffed4ddafea0cb5fc3e0ded50c5946a69b6e96.tar
urpmi-e4ffed4ddafea0cb5fc3e0ded50c5946a69b6e96.tar.gz
urpmi-e4ffed4ddafea0cb5fc3e0ded50c5946a69b6e96.tar.bz2
urpmi-e4ffed4ddafea0cb5fc3e0ded50c5946a69b6e96.tar.xz
urpmi-e4ffed4ddafea0cb5fc3e0ded50c5946a69b6e96.zip
Add the --disable-epsv option to curl, to be friendy with some firewalls
Diffstat (limited to 'urpm')
-rw-r--r--urpm/download.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index 3df420fc..e8585a58 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -246,6 +246,7 @@ sub sync_curl {
($options->{limit_rate} ? ("--limit-rate", $options->{limit_rate}) : ()),
($options->{proxy} ? set_proxy({ type => "curl", proxy => $options->{proxy} }) : ()),
"--stderr", "-", # redirect everything to stdout
+ "--disable-epsv",
"-s", "-I", @ftp_files) . " |";
while (<$curl>) {
if (/Content-Length:\s*(\d+)/) {
@@ -305,6 +306,7 @@ sub sync_curl {
$location_trusted ? "--location-trusted" : @{[]},
"-R",
"-f",
+ "--disable-epsv",
"--stderr", "-", # redirect everything to stdout
@all_files) . " |";
local $/ = \1; #- read input by only one char, this is slow but very nice (and it works!).