summaryrefslogtreecommitdiffstats
path: root/urpm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm')
-rw-r--r--urpm/args.pm1
-rw-r--r--urpm/media.pm1
2 files changed, 2 insertions, 0 deletions
diff --git a/urpm/args.pm b/urpm/args.pm
index ce0b9150..df4a7b3c 100644
--- a/urpm/args.pm
+++ b/urpm/args.pm
@@ -351,6 +351,7 @@ my %options_spec = (
virtual => \$options{virtual},
nopubkey => \$options{nopubkey},
raw => \$options{raw},
+ 'verify-rpm!' => sub { ${options}{'verify-rpm'} = $_[1] },
},
'urpmi.recover' => {
diff --git a/urpm/media.pm b/urpm/media.pm
index fc3d77c6..c8d3dcda 100644
--- a/urpm/media.pm
+++ b/urpm/media.pm
@@ -836,6 +836,7 @@ sub add_medium {
my $medium = { name => $name,
url => $url,
modified => !$options{ignore},
+ (defined $options{'verify-rpm'} ? ('verify-rpm' => $options{'verify-rpm'}) : ()),
};
foreach (qw(downloader update ignore media_info_dir mirrorlist with-dir xml-info)) {
$medium->{$_} = $options{$_} if exists $options{$_};