12 lines
139 B
Plaintext
12 lines
139 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2009 OpenWrt.org
|
||
|
START=94
|
||
|
|
||
|
start() {
|
||
|
/usr/bin/mpdas -c /etc/mpdasrc
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall mpdas
|
||
|
}
|