1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 11:14:10 +03:00
openwrt-xburst/obsolete-buildroot/sources/openwrt/ipkg/chillispot/root/etc/init.d/chilli
mbm 097635b79b massive changes
- sstrip cleanup from mjn3
- various patches from nico and others: http://openwrt.org/forum/viewtopic.php?t=368


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@145 3c298f89-4303-0410-b956-a3cf2f4a3e73
2004-08-24 23:50:14 +00:00

18 lines
273 B
Bash

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