From b0c7f3de6269888208876fe6406c0761b4ced2ab Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 1 Oct 2008 15:48:37 +0000 Subject: - adapt ask_window_manager_to_logout() to make it work (need usermode changes) --- perl-install/any.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'perl-install/any.pm') diff --git a/perl-install/any.pm b/perl-install/any.pm index 14ac12749..0304df559 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -1331,13 +1331,13 @@ sub ask_window_manager_to_logout { 'icewm' => "killall -QUIT icewm", ); my $cmd = $h{$wm} or return; - if ($wm eq 'gnome-session') { - #- NB: consolehelper does not destroy $HOME whereas kdesu does - #- for gnome, we use consolehelper, so below works - $ENV{ICEAUTHORITY} ||= "$ENV{HOME}/.ICEauthority"; - } elsif (member($wm, 'ksmserver', 'kwin') && $> == 0) { + if (member($wm, 'ksmserver', 'kwin', 'gnome-session') && $> == 0) { #- we can not use dcop when we are root - $cmd = "su $ENV{USER} -c '$cmd'"; + if (my $user = $ENV{USERHELPER_UID} && getpwuid($ENV{USERHELPER_UID})) { + $cmd = "su $user -c '$cmd'"; + } else { + log::l('missing or unknown $USERHELPER_UID'); + } } system($cmd); 1; -- cgit v1.2.1