tn3399_openwrt/openwrt/package/mt-daapd/files/mt-daapd.init
Nicolas Thill 72de0ddd99 add mt-daapd package
SVN-Revision: 1746
2005-08-24 19:11:35 +00:00

23 lines
307 B
Bash

#!/bin/sh
BIN=mt-daapd
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
[ -d $RUN_D ] || mkdir -p $RUN_D
$BIN $OPTIONS
;;
stop)
[ -f $PID_F ] && kill -INT $(cat $PID_F)
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?