blob: 9a9e0e73c1a6eee176a189315d28269e8eb47ad5 [file] [log] [blame]
#!/bin/sh
#
# Run the daemon
#
DAEMON="msm_svr"
PIDFILE="/var/run/$DAEMON.pid"
EXEC="/usr/bin/msm_svr"
start() {
echo -n "Starting $DAEMON... "
start-stop-daemon --no-close -S -b -m -p $PIDFILE -x $EXEC
[ $? -eq 0 ] && echo "OK" || echo "ERROR"
}
stop() {
echo -n "Stopping $DAEMON... "
start-stop-daemon -K -p $PIDFILE
[ $? -eq 0 ] && echo "OK" || echo "ERROR"
}
restart() {
stop
start
}
case "$1" in
start|stop|restart)
"$1"
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?