diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | urpm/signature.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -10,6 +10,7 @@ warning o honor per medium "verify-rpm" option for missing signature check o media have keys, not signatures + o warn about packages we don't check even if not using -v - unrequested package list management (for orphans) (mga#7167): o do not wrongly tell we updated the unrequested package list when we didn't (eg: when not having the proper rights such as running urpmq as !root) diff --git a/urpm/signature.pm b/urpm/signature.pm index b873a06d..62e193fd 100644 --- a/urpm/signature.pm +++ b/urpm/signature.pm @@ -80,7 +80,7 @@ sub _check { } #- check whether verify-rpm is specifically disabled for this medium if (defined $medium->{'verify-rpm'} && !$medium->{'verify-rpm'}) { - $urpm->{log}(N("NOT checking %s\n", $filepath)); + $urpm->{info}(N("NOT checking %s\n", $filepath)); next; } |