1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 23:04:11 +03:00
openwrt-xburst/obsolete-buildroot/sources/openwrt/ipkg/chillispot/root/etc/init.d/chilli

18 lines
273 B
Plaintext
Raw Normal View History

#!/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 $?