Branch oldpackages for 14.07
[14.07/packages.git] / sound / shell-fm / files / shell-fm.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 START=99
5 start() {
6         [ -d /tmp/.shell-fm ] || mkdir /tmp/.shell-fm
7         [ -L /tmp/.shell-fm/shell-fm.rc ] || ln -s /etc/shell-fm.rc /tmp/.shell-fm/shell-fm.rc
8         [ -L /tmp/.libao ] || ln -s /etc/libao.conf /tmp/.libao
9         HOME=/tmp shell-fm -d
10 }
11
12 stop() {
13         echo "quit" | telnet localhost 54311
14 }