diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/pkgs.pm | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2857a6fdc..c27ed6032 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- check package signatures like urpmi does (new feature) - log extra debugging messages if passing the 'debug_urpmi' option Version 12.3 - 4 March 2009 diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm index 7d2fcefa3..233955154 100644 --- a/perl-install/install/pkgs.pm +++ b/perl-install/install/pkgs.pm @@ -729,9 +729,6 @@ sub _install_raw { local $packages->{error} = \&log::l; local $packages->{debug} = \&log::l; - # FIXME: package signature checking is disabled for now due to URPM always complaining - local $packages->{options}{'verify-rpm'} = 0; - my ($retry, $retry_count); log::l("rpm transactions start"); |