1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 20:33:58 +02:00
openwrt-packages/multimedia/icecast/files/icecast.init

15 lines
248 B
Plaintext
Raw Normal View History

#!/bin/sh /etc/rc.common
# Example script
# Copyright (C) 2014 OpenWrt.org
START=99
STOP=15
start() {
service_start /usr/bin/icecast -c /etc/icecast.xml -b
}
stop() {
service_stop /usr/bin/icecast
}