summaryrefslogtreecommitdiffstats
path: root/urpmq
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-08-29 09:40:49 +0000
committerFrancois Pons <fpons@mandriva.com>2002-08-29 09:40:49 +0000
commitf6c7d40924ba941dd18d85446ae980c56cf1367d (patch)
tree0b53e7710c6d84c40a21da9d080b5f4593ac6c86 /urpmq
parent451d040fd9c7322c5b528898c93c4a7463c64f0d (diff)
downloadurpmi-f6c7d40924ba941dd18d85446ae980c56cf1367d.tar
urpmi-f6c7d40924ba941dd18d85446ae980c56cf1367d.tar.gz
urpmi-f6c7d40924ba941dd18d85446ae980c56cf1367d.tar.bz2
urpmi-f6c7d40924ba941dd18d85446ae980c56cf1367d.tar.xz
urpmi-f6c7d40924ba941dd18d85446ae980c56cf1367d.zip
4.0-8mdk
Diffstat (limited to 'urpmq')
-rwxr-xr-xurpmq6
1 files changed, 5 insertions, 1 deletions
diff --git a/urpmq b/urpmq
index 8f18b993..fbcc63f5 100755
--- a/urpmq
+++ b/urpmq
@@ -60,6 +60,7 @@ usage:
stdout (root only).
") . _(" --sources - give all source packages before downloading (root only).
") . _(" --force - force invocation even if some packages do not exist.
+") . _(" --parallel - distributed urpmi accross machines of alias.
") . _(" --wget - use wget to retrieve distant files.
") . _(" --curl - use curl to retrieve distant files.
") . _(" --proxy - use specified HTTP proxy, the port number is assumed
@@ -91,6 +92,7 @@ for (@ARGV) {
/^--sources$/ and do { $query->{sources} = 1; next };
/^--force$/ and do { $query->{force} = 1; next };
/^--root$/ and do { push @nextargv, \$query->{root}; next };
+ /^--parallel$/ and do { push @nextargv, \$query->{parallel}; next };
/^--wget$/ and do { $urpm->{sync} = sub { my $options = shift @_;
if (ref $options) { $options->{prefer} = 'wget' }
else { $options = { dir => $options, prefer => 'wget' } }
@@ -143,6 +145,8 @@ $urpm->configure(nocheck_access => 1,
media => $query->{media},
synthesis => $query->{synthesis},
update => $query->{update},
+ root => $query->{root},
+ parallel => $query->{parallel},
);
my $state = {};
@@ -252,7 +256,7 @@ my $query_sub = sub {
my %hack_only_one;
foreach my $id ($state->{selected} ? keys %{$state->{selected}} : keys %requested) {
my $class = $state->{selected}{$id} || $requested{$id};
- if (ref $class) {
+ if (ref $class eq 'ARRAY') {
foreach my $choices (@{$class || []}) {
exists $hack_only_one{$choices} and next;
print join('|', map { $query_sub->($_) } @$choices), "\n";