9fc0f66736
git-svn-id: svn://svn.openwrt.org/openwrt/packages@22610 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
229 B
Bash
16 lines
229 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2010 OpenWrt.org
|
|
|
|
START=50
|
|
BIN=/usr/bin/minidlna
|
|
PID=/var/run/minidlna.pid
|
|
SSD=start-stop-daemon
|
|
|
|
start() {
|
|
$SSD -p $PID -S -x $BIN -- -P $PID -R
|
|
}
|
|
|
|
stop() {
|
|
$SSD -p $PID -K -s SIGINT
|
|
}
|