summaryrefslogtreecommitdiffstats
path: root/urpm/sys.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-03-17 17:20:02 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-03-17 17:20:02 +0000
commitf0bc8483bcb43e955862a375161e99658dce49b1 (patch)
tree276202f7f8763d68db149d541d1c10a4af6b79c8 /urpm/sys.pm
parent969efed0bf6ffea584f378ae89ec28a89e02254f (diff)
downloadurpmi-f0bc8483bcb43e955862a375161e99658dce49b1.tar
urpmi-f0bc8483bcb43e955862a375161e99658dce49b1.tar.gz
urpmi-f0bc8483bcb43e955862a375161e99658dce49b1.tar.bz2
urpmi-f0bc8483bcb43e955862a375161e99658dce49b1.tar.xz
urpmi-f0bc8483bcb43e955862a375161e99658dce49b1.zip
- urpmi:
o tell the user to "restart system" when it is needed
Diffstat (limited to 'urpm/sys.pm')
-rw-r--r--urpm/sys.pm47
1 files changed, 47 insertions, 0 deletions
diff --git a/urpm/sys.pm b/urpm/sys.pm
index f40cc401..08baa0ff 100644
--- a/urpm/sys.pm
+++ b/urpm/sys.pm
@@ -150,6 +150,53 @@ sub check_fs_writable () {
1;
}
+sub _launched_time {
+ my ($component) = @_;
+
+ if ($component eq N_("system")) {
+ my ($uptime) = cat_('/proc/uptime') =~ /(\S+)/;
+ time() - $uptime;
+ } else {
+ 1; # TODO
+ }
+}
+
+sub need_restart() {
+ my $rpm_qf = '%{name} %{installtime} [%{provides}:%{Provideversion} ]\n';
+ open(my $F, "rpm -q --whatprovides should-restart --qf '$rpm_qf' | uniq |");
+
+ my (%need_restart, %launched_time);
+ while (my $line = <$F>) {
+ my ($name, $installtime, $s) = $line =~ /(\S+)\s+(\S+)\s+(.*)/;
+
+ my @should_restart = $s =~ /should-restart:(\S+)/g;
+ foreach my $component (@should_restart) {
+ $launched_time{$component} ||= _launched_time($component);
+
+ if ($launched_time{$component} < $installtime) {
+ push @{$need_restart{$component}}, $name;
+ }
+ }
+ }
+ %need_restart && \%need_restart;
+}
+
+sub need_restart_formatted() {
+ my $need_restart = need_restart() or return;
+
+ foreach (keys %$need_restart) {
+ $need_restart->{$_} = N("You should restart %s for %s", translate($_), join(', ', sort @{$need_restart->{$_}}));
+ }
+ $need_restart;
+}
+
+# useful on command-line: perl -Murpm::sys -e 'urpm::sys::print_need_restart'
+sub print_need_restart() {
+ my $h = need_restart_formatted();
+ print "$_\n" foreach values %$h;
+}
+
+
#- create a plain rpm from an installed rpm and a delta rpm (in the current directory)
#- returns the new rpm filename in case of success
#- params :