From cb89b7ba254079e5adae2969e296255d8c4ed614 Mon Sep 17 00:00:00 2001 From: janw Date: Wed, 4 Jun 2008 08:53:11 +0000 Subject: [PATCH] Fix return value. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11200 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-si/debian/gosa-si-common.init | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gosa-si/debian/gosa-si-common.init b/gosa-si/debian/gosa-si-common.init index 7c6101ed6..42f648753 100755 --- a/gosa-si/debian/gosa-si-common.init +++ b/gosa-si/debian/gosa-si-common.init @@ -34,12 +34,14 @@ start_server() { stop_client() { start-stop-daemon --stop --retry 5 --quiet --pidfile /var/run/gosa-si-client.pid --name gosa-si-client kill `ps -C gosa-si-client -o pid=` &> /dev/null + ps -C gosa-si-client -o pid= &> /dev/null } stop_server() { start-stop-daemon --stop --retry 5 --quiet --pidfile /var/run/gosa-si-server.pid --name gosa-si-server kill `ps -C gosa-si-server -o pid=` &> /dev/null + ps -C gosa-si-server -o pid= &> /dev/null } -- 2.30.2