16 lines
229 B
Plaintext
16 lines
229 B
Plaintext
|
#!/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
|
||
|
}
|