You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
509 B
37 lines
509 B
#!/bin/sh
|
|
|
|
NAME=brickd
|
|
PIDFILE=/var/run/$NAME.pid
|
|
DAEMON=/usr/sbin/$NAME
|
|
|
|
start() {
|
|
printf "Starting $NAME: "
|
|
start-stop-daemon -S -q -m -b -p $PIDFILE --exec $DAEMON
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
stop() {
|
|
printf "Stopping $NAME: "
|
|
start-stop-daemon -K -q -p $PIDFILE
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
|
}
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
restart|reload)
|
|
restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|reload}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|
|
|