utils/psmisc: fix peekfd issue on mips/big-endian targets, included upstream patch...
[openwrt/svn-archive/archive.git] / net / frickin / files / frickin.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3 START=50
4
5 BIN=frickin
6 DEFAULT=/etc/default/$BIN
7 [ -f $DEFAULT ] && . $DEFAULT
8
9 start() {
10 $BIN $OPTIONS &
11 }
12
13 stop() {
14 killall $BIN
15 }
16