| 12345678910111213141516171819202122232425262728 | #!/bin/sh#PKG busybox#INIT 41. /etc/rc.confcase $1 inautostart)	test x"$inetd" = x"NO" && exit 0	test -e /etc/inetd.conf || exit 0	exec sh $0 start	;;start)	/usr/sbin/inetd	;;autostop)	;;stop)	kill $(pgrep -f /usr/sbin/inetd)	;;restart)	sh $0 stop	exec sh $0 start	;;*)	echo "Usage: $0 {start | stop | restart}"	exit 1	;;esacexit $?
 |