6ddc29708d
- The netopeer server forks to background by default, no need for '-b' - The path to the daemon is /usr/sbin, not /usr/bin Signed-off-by: Joachim Wiberg <troglobit@gmail.com> Acked-by: Heiko Thiery <heiko.thiery@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
51 lines
721 B
Bash
51 lines
721 B
Bash
#!/bin/sh
|
|
|
|
DAEMON="netopeer2-server"
|
|
PIDFILE="/var/run/$DAEMON.pid"
|
|
|
|
NETOPEER2_SERVER_ARGS=""
|
|
|
|
start() {
|
|
printf 'Starting %s: ' "$DAEMON"
|
|
|
|
start-stop-daemon -S -q -p $PIDFILE -x "/usr/sbin/$DAEMON" \
|
|
-- $NETOPEER2_SERVER_ARGS
|
|
status=$?
|
|
if [ "$status" -eq 0 ]; then
|
|
echo "OK"
|
|
else
|
|
echo "FAIL"
|
|
fi
|
|
return "$status"
|
|
}
|
|
|
|
stop() {
|
|
printf 'Stopping %s: ' "$DAEMON"
|
|
start-stop-daemon -K -q -p $PIDFILE
|
|
status=$?
|
|
if [ "$status" -eq 0 ]; then
|
|
echo "OK"
|
|
else
|
|
echo "FAIL"
|
|
fi
|
|
return "$status"
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
sleep 1
|
|
start
|
|
}
|
|
|
|
reload() {
|
|
# we do not support real reload .. just restart
|
|
restart
|
|
}
|
|
|
|
case "$1" in
|
|
start|stop|restart|reload)
|
|
"$1";;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|reload}"
|
|
esac
|