summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/pkgs.pm6
2 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 08daa16a1..9d461193a 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,6 +1,7 @@
- include mount.ntfs-3g in install and rescue
- add various command to rescue
- display an error when mount fails during View action
+- do not crash when encountering bad signatures in automatic install
Version 12.27 - 14 April 2009
diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm
index 188e81f05..c933cfd56 100644
--- a/perl-install/install/pkgs.pm
+++ b/perl-install/install/pkgs.pm
@@ -763,7 +763,11 @@ sub _install_raw {
$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");
+ if ($packages->{options}{auto}) {
+ 0;
+ } else {
+ $::o->ask_yesorno(N("Warning"), "$msg\n\n$msg2");
+ }
},
copy_removable => sub {
my ($medium) = @_;