From 574c3628c48e07eea80d0250dad59787296de92d Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 4 Mar 2009 11:35:12 +0000 Subject: (_install_raw::trans_error_summary) do not die if a transaction failed ; only warn about it in graphical mode (no more a fata error for auto install) --- perl-install/install/pkgs.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'perl-install/install/pkgs.pm') diff --git a/perl-install/install/pkgs.pm b/perl-install/install/pkgs.pm index 15556e224..4acb84ac9 100644 --- a/perl-install/install/pkgs.pm +++ b/perl-install/install/pkgs.pm @@ -764,7 +764,10 @@ sub _install_raw { trans_error_summary => sub { my ($nok, $errors) = @_; log::l($nok . " installation transactions failed"); - die "installation of rpms failed:\n " . join("\n", @$errors); + if (!$packages->{options}{auto}) { + $::o->ask_warn(N("Error"), N("%d installation transactions failed", $nok) . "\n\n" . + N("Installation of packages failed:") . "\n\n" . join("\n", @$errors)); + } }, message => sub { my ($title, $message) = @_; -- cgit v1.2.1