aboutsummaryrefslogtreecommitdiffstats
path: root/testing/icecast/icecast.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/icecast/icecast.initd')
-rw-r--r--testing/icecast/icecast.initd19
1 files changed, 0 insertions, 19 deletions
diff --git a/testing/icecast/icecast.initd b/testing/icecast/icecast.initd
deleted file mode 100644
index b30027b2fe..0000000000
--- a/testing/icecast/icecast.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting Icecast 2"
- start-stop-daemon --start --exec /usr/bin/icecast \
- -- ${ICEC_OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping Icecast 2"
- start-stop-daemon --stop --exec /usr/bin/icecast
- eend $?
-}