summaryrefslogtreecommitdiff
blob: 202ce67ae5e1fbb9b3b9a5530974a8095ccf7d1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/sbin/runscript

depend() {
	need net
}

start() {
	ebegin "Starting Icecast 2"
	start-stop-daemon --background --start --make-pidfile --pidfile /var/run/icecast.pid --exec /usr/bin/icecast -- -c /etc/icecast2/icecast.xml
	eend $?
}

stop() {
	ebegin "Stopping Icecast 2"
	start-stop-daemon --stop --pidfile /var/run/icecast.pid --name icecast
	eend $?
}