1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/sound/mpdas/files/mpdas.init
Nicolas Thill 40566d202b packages/mpdas: use new service functions
SVN-Revision: 28969
2011-11-12 01:30:30 +00:00

16 lines
208 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2009-2011 OpenWrt.org
START=94
SERVICE_DAEMONIZE=1
start() {
HOME=/root \
service_start /usr/bin/mpdas -c /etc/mpdasrc
}
stop() {
service_stop /usr/bin/mpdas
}