1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 20:36:47 +03:00
openwrt-xburst/package/chillispot/ipkg/chillispot.init
nico 8206423118 Update chillispot to 1.0RC3, uniformize package Makefile, move ipkg related files to ./ipkg, add conffiles
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@679 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-04-18 21:42:27 +00:00

21 lines
289 B
Bash

#!/bin/sh
RUN_D=/var/run
PID_F=$RUN_D/chilli.pid
case $1 in
start)
/sbin/insmod tun >/dev/null 2>&1
[ -d $RUN_D ] || mkdir -p $RUN_D
/usr/sbin/chilli
;;
stop)
[ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1
;;
*)
echo "usage: $0 (start|stop)"
exit 1
esac
exit $?