summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5bc3e77)
raw | patch | inline | side by side (parent: 5bc3e77)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 4 Jun 2008 08:58:20 +0000 (08:58 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 4 Jun 2008 08:58:20 +0000 (08:58 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@11202 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/debian/gosa-si-common.init | patch | blob | history |
index 42f648753314b199f580b1ef156bf8c4fae2e7c5..cdcc9a3c200dfd1b658d98c9447b5b797b5cb0c0 100755 (executable)
-#!/bin/bash
+#!/bin/sh
# Start/stop the GOsa support daemon infrastructure.
#
### BEGIN INIT INFO
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
+ kill `ps -C gosa-si-client -o pid=` > /dev/null 2>&1
+ ps -C gosa-si-client -o pid= > /dev/null 2>&1
}
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
+ kill `ps -C gosa-si-server -o pid=` > /dev/null 2>&1
+ ps -C gosa-si-server -o pid= > /dev/null 2>&1
}
log_progress_msg "daemon"
start_server
fi
- if [ "$START_CLIENT" == "1" -a -x /usr/sbin/gosa-si-client ]; then
+ if [ "$START_CLIENT" = "1" -a -x /usr/sbin/gosa-si-client ]; then
log_progress_msg "client"
start_client
fi
log_end_msg $?
;;
stop) log_daemon_msg "Stopping GOsa support infrastructure"
- if [ "$START_CLIENT" == "1" -a -x /usr/sbin/gosa-si-client ]; then
+ if [ "$START_CLIENT" = "1" -a -x /usr/sbin/gosa-si-client ]; then
log_progress_msg "client"
stop_client
fi
log_end_msg $?
;;
reload|force-reload|restart) log_daemon_msg "Restarting GOsa support infrastructure"
- if [ "$START_CLIENT" == "1" -a -x /usr/sbin/gosa-si-client ]; then
+ if [ "$START_CLIENT" = "1" -a -x /usr/sbin/gosa-si-client ]; then
stop_client
fi
if [ -x /usr/sbin/gosa-si-server ]; then
stop_server
start_server
fi
- if [ "$START_CLIENT" == "1" -a -x /usr/sbin/gosa-si-client ]; then
+ if [ "$START_CLIENT" = "1" -a -x /usr/sbin/gosa-si-client ]; then
start_client
fi
log_progress_msg "done"