summaryrefslogtreecommitdiffstats
path: root/urpm/signature.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-08-31 16:46:04 +0000
committerThierry Vignaud <tv@mageia.org>2012-08-31 16:46:04 +0000
commit7d28c61bdc37752881311cef1a55e83d0bef5c6c (patch)
tree8004e151f5552dc2a4aad7447868359040217f75 /urpm/signature.pm
parentb51ac1c750bc83d89e5e87e787ca580e6c53afe3 (diff)
downloadurpmi-7d28c61bdc37752881311cef1a55e83d0bef5c6c.tar
urpmi-7d28c61bdc37752881311cef1a55e83d0bef5c6c.tar.gz
urpmi-7d28c61bdc37752881311cef1a55e83d0bef5c6c.tar.bz2
urpmi-7d28c61bdc37752881311cef1a55e83d0bef5c6c.tar.xz
urpmi-7d28c61bdc37752881311cef1a55e83d0bef5c6c.zip
(_check) slighty better security messages
Diffstat (limited to 'urpm/signature.pm')
-rw-r--r--urpm/signature.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/signature.pm b/urpm/signature.pm
index 85f15c29..95d80f9f 100644
--- a/urpm/signature.pm
+++ b/urpm/signature.pm
@@ -74,13 +74,13 @@ sub _check {
if (!$medium) {
if ($verif =~ /OK \(\(none\)\)/) {
$verif =~ s/\n//g;
- $urpm->{info}(N("SECURITY: The following package has no signature (%s): %s\n", $verif, $filepath));
+ $urpm->{info}(N("SECURITY: The following package is _NOT_ signed (%s): %s\n", $verif, $filepath));
}
next;
}
#- check whether verify-rpm is specifically disabled for this medium
if (defined $medium->{'verify-rpm'} && !$medium->{'verify-rpm'}) {
- $urpm->{info}(N("SECURITY: NOT checking %s\n", $filepath));
+ $urpm->{info}(N("SECURITY: NOT checking package \"%s\" (due to configuration)\n", $filepath));
next;
}