mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 17:50:38 +02:00
29 lines
371 B
Plaintext
29 lines
371 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
BIN=miredo
|
||
|
DEFAULT=/etc/default/$BIN
|
||
|
RUN_D=/var/run
|
||
|
PID_F=$RUN_D/$BIN.pid
|
||
|
[ -f $DEFAULT ] && . $DEFAULT
|
||
|
|
||
|
case $1 in
|
||
|
start)
|
||
|
[ -d $RUN_D ] || mkdir -p $RUN_D
|
||
|
insmod ipv6
|
||
|
insmod tun
|
||
|
$BIN $OPTIONS
|
||
|
;;
|
||
|
stop)
|
||
|
[ -f $PID_F ] && kill $(cat $PID_F)
|
||
|
;;
|
||
|
restart)
|
||
|
$0 stop
|
||
|
$0 start
|
||
|
;;
|
||
|
*)
|
||
|
echo "usage: $0 (start|stop|restart)"
|
||
|
exit 1
|
||
|
esac
|
||
|
|
||
|
exit $?
|