1
0
This repository has been archived on 2025-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
openwrt_archive/sound/scmpc/files/scmpc.init
Nicolas Thill 8b83417edc packages/scmpc: use new service functions
SVN-Revision: 28968
2011-11-12 01:30:27 +00:00

16 lines
209 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=94
SERVICE_USE_PID=1
start() {
mkdir -m 0755 -p /var/lib/scmpc
service_start /usr/bin/scmpc
}
stop() {
service_stop /usr/bin/scmpc
}