diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-10-13 16:59:57 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-10-13 16:59:57 +0000 |
commit | c023fc2aa7039577670782d628906090980a3c8d (patch) | |
tree | 4ce3285caa1e5f3198b765f9342e41f3dd8e0bc0 /urpm | |
parent | 83bd67e9ed8ea3aa5c2ecae387e80705a2e8310c (diff) | |
download | urpmi-c023fc2aa7039577670782d628906090980a3c8d.tar urpmi-c023fc2aa7039577670782d628906090980a3c8d.tar.gz urpmi-c023fc2aa7039577670782d628906090980a3c8d.tar.bz2 urpmi-c023fc2aa7039577670782d628906090980a3c8d.tar.xz urpmi-c023fc2aa7039577670782d628906090980a3c8d.zip |
add --download-all options to enable downloading of all packages before install
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/args.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/urpm/args.pm b/urpm/args.pm index 28b2ef31..d9e26718 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -130,6 +130,7 @@ my %options_spec = ( 'parallel=s' => \$::parallel, 'metalink!' => sub { $urpm->{options}{metalink} = $_[1] }, + 'download-all!' => sub { $urpm->{options}{'download-all'} = $_[1] }, # deprecated in favor of --downloader xxx wget => sub { $urpm->{options}{downloader} = 'wget' }, |