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.
29 lines
448 B
29 lines
448 B
#!/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 $?
|
|
|