From 354e2a6c879276b4e1fc3dc8032eb53bca6a9569 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 10 Feb 2009 10:55:06 +0000 Subject: (perform_installation) implement 'need_restart' so that we warn when rebooting is needed after installing packages --- NEWS | 3 +++ Rpmdrake/pkg.pm | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ca7a3f96..337e807e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +- MandrivaUpdate: + o warn when rebooting is needed after installing packages + Version 5.6 - 9 February 2008, Thierry Vignaud - edit-urpm-sources: diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index a06422d9..217c1f2e 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -723,7 +723,7 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( }; my $exit_code = - urpm::main_loop::run($urpm, $state, undef, undef, $requested, + urpm::main_loop::run($urpm, $state, 1, undef, $requested, { completed => sub { # explicitly destroy the progress window when it's over; we may @@ -804,6 +804,11 @@ sub perform_installation { #- (partially) duplicated from /usr/sbin/urpmi :-( scroll => 1, ); }, + need_restart => sub { + my ($need_restart_formatted) = @_; + interactive_msg(N("Warning"), + join("\n\n", values %$need_restart_formatted)); + }, success_summary => sub { if (!($done || @to_remove)) { interactive_msg(N("Error"), -- cgit v1.2.1