| 123456789101112131415161718192021222324252627 | #!/bin/sh#PKG busybox#INIT 40. /etc/rc.confcase $1 inautostart)	test x"${network:-NO}" = x"NO" && exit 0	exec sh $0 start	;;start)	[ -f /etc/network/interfaces ] || exit 1	ifup -a	;;autostop|stop)	[ -f /etc/network/interfaces ] || exit 1	ifdown -a	;;restart)	sh $0 stop	exec sh $0 start	;;*)	echo "Usage: $0 {start | stop | restart}"	exit 1	;;esacexit $?
 |