1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 11:14:10 +03:00
openwrt-xburst/openwrt/package/chillispot/ipkg/etc/init.d/S60chilli
nbd f3ae71829d add chillispot
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@501 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-04-01 00:34:13 +00:00

17 lines
278 B
Bash
Executable File

#!/bin/sh
case $1 in
start)
/sbin/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 $?