Browse Source

[icecast] use procd for init script

Signed-off-by: André Gaul <gaul@web-yard.de>
lilik-openwrt-22.03
André Gaul 10 years ago
parent
commit
66b13d6ca7
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      multimedia/icecast/files/icecast.init

+ 6
- 6
multimedia/icecast/files/icecast.init 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
}

Loading…
Cancel
Save