summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
diff options
context:
space:
mode:
authorAnssi Hannula <anssi@mandriva.org>2008-06-15 17:44:22 +0000
committerAnssi Hannula <anssi@mandriva.org>2008-06-15 17:44:22 +0000
commit812bea8f9d33daedaea3eca51a5f4f57ec8f42fa (patch)
tree69488d4f4476c66cbaefff093df18c0d98f78a7c /urpm/download.pm
parent3c93c97ba1fe73867f75f9c6e79d434eb6ebaaf9 (diff)
downloadurpmi-812bea8f9d33daedaea3eca51a5f4f57ec8f42fa.tar
urpmi-812bea8f9d33daedaea3eca51a5f4f57ec8f42fa.tar.gz
urpmi-812bea8f9d33daedaea3eca51a5f4f57ec8f42fa.tar.bz2
urpmi-812bea8f9d33daedaea3eca51a5f4f57ec8f42fa.tar.xz
urpmi-812bea8f9d33daedaea3eca51a5f4f57ec8f42fa.zip
urpmi: set connection timeout for rsync as well
Diffstat (limited to 'urpm/download.pm')
-rw-r--r--urpm/download.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index 27f03f98..bf70fac6 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -503,6 +503,8 @@ sub sync_rsync {
($options->{quiet} ? qw(-q) : qw(--progress -v)),
($options->{compress} ? qw(-z) : @{[]}),
($options->{ssh} ? qq(-e $options->{ssh}) : @{[]}),
+ "--timeout=$CONNECT_TIMEOUT",
+ "--contimeout=$CONNECT_TIMEOUT",
qw(--partial --no-whole-file --no-motd --copy-links),
(defined $options->{'rsync-options'} ? split /\s+/, $options->{'rsync-options'} : ()),
"'$file' '$options->{dir}' 2>&1");