forked-daapd.init (250B)
1 #!/bin/sh /etc/rc.common 2 # Copyright (C) 2014 OpenWrt.org 3 4 START=99 5 BIN=/usr/sbin/forked-daapd 6 PID=/var/run/forked-daapd.pid 7 SSD=start-stop-daemon 8 9 start() { 10 $SSD -p $PID -S -x $BIN -- -P $PID 11 } 12 13 stop() { 14 $SSD -p $PID -K -s SIGINT 15 }