summaryrefslogtreecommitdiffstats
path: root/urpmi.update
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-07-11 14:01:58 +0000
committerFrancois Pons <fpons@mandriva.com>2002-07-11 14:01:58 +0000
commit5af1271ab553aa62a3ef995d173a45e1907d8bd2 (patch)
treeed4741d9b11c877cc893ae00f059b3d0a45db203 /urpmi.update
parent226d3fc89d5ae6c5c5c86394e86b4fe16740c271 (diff)
downloadurpmi-5af1271ab553aa62a3ef995d173a45e1907d8bd2.tar
urpmi-5af1271ab553aa62a3ef995d173a45e1907d8bd2.tar.gz
urpmi-5af1271ab553aa62a3ef995d173a45e1907d8bd2.tar.bz2
urpmi-5af1271ab553aa62a3ef995d173a45e1907d8bd2.tar.xz
urpmi-5af1271ab553aa62a3ef995d173a45e1907d8bd2.zip
3.7-3mdk
Diffstat (limited to 'urpmi.update')
-rwxr-xr-xurpmi.update16
1 files changed, 16 insertions, 0 deletions
diff --git a/urpmi.update b/urpmi.update
index 1454d16a..7560bd9c 100755
--- a/urpmi.update
+++ b/urpmi.update
@@ -40,6 +40,18 @@ sub main {
else { $options = { dir => $options, prefer => 'wget' } }
urpm::sync_webfetch($options, @_) }, next;
/^--curl/ and $urpm->{sync} = \&urpm::sync_webfetch, next;
+ /^--proxy$/ and do {
+ ($_ = shift @_) =~ m,^http://([^:]+)(:([\d]+)|[^:])$, or die $usage;
+ $_ .= ":1080" if /[^\d]/;
+ $urpm->{proxy}->{http_proxy} = $_;
+ next;
+ };
+ /^--proxy-user$/ and do {
+ ($_ = shift @_) =~ /(.+):(.+)/, or die $usage;
+ $urpm->{proxy}->{user} = $1;
+ $urpm->{proxy}->{pwd} = $2;
+ next;
+ };
/^--?noa/ and next; #- default, keeped for compability.
/^-/ and die _("usage: urpmi.update [options] <name> ...
where <name> is a medium name to update.
@@ -49,6 +61,10 @@ where <name> is a medium name to update.
") . _(" -f - force generation of hdlist files.
") . _(" --wget - use wget to retrieve distant files.
") . _(" --curl - use curl to retrieve distant files.
+") . _(" --proxy - use specified HTTP proxy, the port number is assumed
+ to be 1080 by default (format is <proxyhost[:port]>).
+") . _(" --proxy-user - specify user and password to use for proxy
+ authentication (format is <user:password>).
") . _("\nunknown options '%s'\n", $_);
push @toupdates, $_;
}