port lots of init scripts over to rc.common (more to come)
[openwrt/svn-archive/archive.git] / net / gmediaserver / files / gmediaserver.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 BIN=gmediaserver
5 DEFAULT=/etc/default/$BIN
6 RUN_D=/var/run
7 PID_F=$RUN_D/$BIN.pid
8 [ -f $DEFAULT ] && . $DEFAULT
9
10 start() {
11 $BIN $OPTIONS
12 }
13
14 stop() {
15 [ -f $PID_F ] && kill $(cat $PID_F)
16 }
17