52333fea30
The test doesn't make sense. It just exits without any error if the binary doesn't exist, which is silly. Replace the DAEMON variable, which was used only once, by the full path of the binary file. Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
448 B
Bash
Executable File
30 lines
448 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Starts neard
|
|
#
|
|
|
|
NAME=neard
|
|
|
|
case "$1" in
|
|
start)
|
|
printf "Starting $NAME: "
|
|
start-stop-daemon -S -q -p /var/run/${NAME}.pid -x /usr/libexec/nfc/neard -- -d '*'
|
|
echo "OK"
|
|
;;
|
|
stop)
|
|
printf "Stopping $NAME: "
|
|
start-stop-daemon -K -q -p /var/run/${NAME}.pid
|
|
echo "OK"
|
|
;;
|
|
restart|reload)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|