summaryrefslogtreecommitdiffstats
path: root/testing/icecast/icecast.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/icecast/icecast.initd')
-rw-r--r--testing/icecast/icecast.initd18
1 files changed, 0 insertions, 18 deletions
diff --git a/testing/icecast/icecast.initd b/testing/icecast/icecast.initd
deleted file mode 100644
index b82e5cdd..00000000
--- a/testing/icecast/icecast.initd
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting Icecast 2"
- start-stop-daemon --background --start --make-pidfile --pidfile /var/run/icecast.pid --exec /usr/bin/icecast -- -c /etc/icecast.xml
- eend $?
-}
-
-stop() {
- ebegin "Stopping Icecast 2"
- start-stop-daemon --stop --pidfile /var/run/icecast.pid --name icecast
- eend $?
-}