diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | urpm/signature.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ - fix testsuite - security: o honor per medium "verify-rpm" option for missing signature check + o media have keys, not signatures - 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 5d723c6b..7e6cc368 100644 --- a/urpm/signature.pm +++ b/urpm/signature.pm @@ -75,7 +75,7 @@ sub _check { $invalid_sources{$filepath} = N("Missing signature (%s)", $verif); } } else { - $invalid_sources{$filepath} = N("Medium without signature (%s)", $verif); + $invalid_sources{$filepath} = N("Medium without key (%s)", $verif); } #- invoke check signature callback. $options{callback} and $options{callback}->( |