2006-06-20 17:54:51 +00:00
|
|
|
#!/bin/sh
|
2006-09-29 20:35:45 +00:00
|
|
|
. /etc/functions.sh
|
|
|
|
include /lib/network
|
|
|
|
scan_interfaces
|
2006-06-20 17:54:51 +00:00
|
|
|
|
|
|
|
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
|
2006-09-29 20:35:45 +00:00
|
|
|
config_get ipaddr lan ipaddr
|
|
|
|
/usr/sbin/chilli --dns1="$ipaddr"
|
2006-06-20 17:54:51 +00:00
|
|
|
;;
|
|
|
|
stop)
|
|
|
|
[ -f $PID_F ] && kill $(cat $PID_F) >/dev/null 2>&1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "usage: $0 (start|stop)"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit $?
|