diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-15 15:00:43 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-15 15:00:43 +0000 |
commit | 19d3a0474c69d30e4475a8bd5accddac2267576e (patch) | |
tree | dc04e909b6c626bf0f0dba4b03b5140a74a9f0ad /urpm | |
parent | 10fab33bd78df1805cfc7cec20674676d66c74d9 (diff) | |
download | urpmi-19d3a0474c69d30e4475a8bd5accddac2267576e.tar urpmi-19d3a0474c69d30e4475a8bd5accddac2267576e.tar.gz urpmi-19d3a0474c69d30e4475a8bd5accddac2267576e.tar.bz2 urpmi-19d3a0474c69d30e4475a8bd5accddac2267576e.tar.xz urpmi-19d3a0474c69d30e4475a8bd5accddac2267576e.zip |
Add a --noscripts option to urpmi
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 b41e24fe..ae4eb444 100644 --- a/urpm/args.pm +++ b/urpm/args.pm @@ -122,6 +122,7 @@ my %options_spec = ( 'excludepath|exclude-path=s' => sub { $urpm->{options}{excludepath} = $_[1] }, 'excludedocs|exclude-docs' => sub { $urpm->{options}{excludedocs} = 1 }, 'ignoresize' => sub { $urpm->{options}{ignoresize} = 1 }, + noscripts => sub { $urpm->{options}{noscripts} = 1 }, 'more-choices' => sub { $urpm->{options}{morechoices} = 1 }, 'expect-install!' => \$::expect_install, 'nolock' => \$::nolock, |