[icecast] use procd for init script

Signed-off-by: André Gaul <gaul@web-yard.de>
This commit is contained in:
André Gaul 2014-07-28 09:47:29 +02:00
parent ad4f81a2f5
commit 66b13d6ca7
1 changed files with 6 additions and 6 deletions

View File

@ -2,13 +2,13 @@
# Example script
# Copyright (C) 2014 OpenWrt.org
USE_PROCD=1
START=99
STOP=15
start() {
service_start /usr/bin/icecast -c /etc/icecast.xml -b
}
stop() {
service_stop /usr/bin/icecast
start_service() {
procd_open_instance
procd_set_param command /usr/bin/icecast -c /etc/icecast.xml
procd_set_param respawn
procd_close_instance
}