summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-03-10 18:44:16 +0000
committerThierry Vignaud <tv@mandriva.org>2008-03-10 18:44:16 +0000
commit9449d173bc88c27befd4f20c78ccee9f67964957 (patch)
treec168ff3819dbdff857b1e13e62c72d35a951d235
parentf1bfe33c3b8673e3bb2451fd7dc9a8b8d419180c (diff)
downloadcontrol-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar
control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar.gz
control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar.bz2
control-center-9449d173bc88c27befd4f20c78ccee9f67964957.tar.xz
control-center-9449d173bc88c27befd4f20c78ccee9f67964957.zip
fix calling userdrake without consolehelper-gtk else we kill
consolehelper-gtk instead of userdrake (#34892) We were calling /usr/bin/userdrake instead of /usr/sbin/userdrake. Thus we run consolehelper-gtk that then run userdrake. When trying to kill userdrake, we actually killed consolehelper-gtk whereas userdrake was still running. Hence first kill did nothing and second kill closed mcc
-rw-r--r--NEWS3
-rwxr-xr-xcontrol-center2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 749c5485..7cc9d4c6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- fix calling userdrake without consolehelper-gtk else we kill
+ consolehelper-gtk instead of userdrake (#34892)
+
Version 10.17 - 7 March 2008, Thierry Vignaud
- add "Parental Controls" icon
diff --git a/control-center b/control-center
index 4bd867d5..606ca2bd 100755
--- a/control-center
+++ b/control-center
@@ -718,7 +718,7 @@ my %programs =
"Users" =>
{
# too big
- binary => "$bindir/userdrake",
+ binary => "$sbindir/userdrake",
embedded => 1,
description => N("Manage users on system"),
long_description => N("Add, remove or change users of the system"),