diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/pkgs.pm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index ca833e30d..2f84846be 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- log bogus signatures + Version 12.8 - 6 March 2009 - RC1 banner diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm index fa31c2094..db241d635 100644 --- a/perl-install/install/pkgs.pm +++ b/perl-install/install/pkgs.pm @@ -753,6 +753,8 @@ sub _install_raw { bad_signature => sub { my ($msg, $msg2) = @_; $msg =~ s/:$/\n\n/m; # FIXME: to be fixed in urpmi after 2008.0 (sic!) + log::l($msg); + log::l($msg2); $::o->ask_yesorno(N("Warning"), "$msg\n\n$msg2"); }, ask_retry => sub { |