summaryrefslogtreecommitdiff
blob: ea19e2e2759bfd79f8db6aa76955b83d4f9414a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript

depend() {
	need net
}

start () {
	ebegin "Starting Last.fm Proxy"
	start-stop-daemon --start -p /var/run/lastfmproxy.pid -b -m \
		--exec /usr/share/lastfmproxy/main.py
	einfo "Stream: http://localhost:1881/lastfm.m3u"
	einfo "Web frontend: http://localhost:1881/"
	eend $?
}

stop () {
	ebegin "Stopping Last.fm Proxy"
	start-stop-daemon --stop --quiet -p /var/run/lastfmproxy.pid -m \
		--exec /usr/share/lastfmproxy/main.py
	rm -f /var/run/lastfmproxy.pid
	eend $?
}