diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-07-27 02:25:26 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-07-27 02:25:26 +0000 |
commit | 458bbe750abd279dc9749b824a986a73f0cffafd (patch) | |
tree | 33b0993575752b9985b8a4fb6be66d421d9c51eb /urpmi.addmedia | |
parent | 01f500e8ee880ad2c249d0fcdad00b70d721c257 (diff) | |
download | urpmi-458bbe750abd279dc9749b824a986a73f0cffafd.tar urpmi-458bbe750abd279dc9749b824a986a73f0cffafd.tar.gz urpmi-458bbe750abd279dc9749b824a986a73f0cffafd.tar.bz2 urpmi-458bbe750abd279dc9749b824a986a73f0cffafd.tar.xz urpmi-458bbe750abd279dc9749b824a986a73f0cffafd.zip |
Add options -q and -v (quiet and verbose) to urpmi.{add,remove}media
Diffstat (limited to 'urpmi.addmedia')
-rwxr-xr-x | urpmi.addmedia | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/urpmi.addmedia b/urpmi.addmedia index 3f66fa4c..ca73dc57 100755 --- a/urpmi.addmedia +++ b/urpmi.addmedia @@ -74,6 +74,8 @@ and [options] are from ") . N(" --no-md5sum - disable MD5SUM file checking. ") . N(" -c - clean headers cache directory. ") . N(" -f - force generation of hdlist files. +") . N(" -q - quiet mode. +") . N(" -v - verbose mode. "); warn $m ? "$usage\n$m" : $usage; exit 0; @@ -96,11 +98,15 @@ sub main { } $options{force} = 0; $options{noclean} = 1; + $options{verbose} = 1; $options{probe_with} = 'synthesis'; #- no the default is to probe synthesis file. my $urpm = new urpm; urpm::args::parse_cmdline(urpm => $urpm); our ($name, $url, $with, $relative_hdlist) = our @cmdline; + #- remove verbose if not asked. + $options{verbose} > 0 or $urpm->{log} = sub {}; + #- allow not to give name immediately. $options{distrib} or $url or ($url, $name) = ($name, ''); my ($type) = $url =~ m,^([^:]*)://, or $options{distrib} or usage; |