| 123456789101112131415161718 | #!/bin/sh#PKG rdate#INIT 54. /etc/rc.confcase $1 inautostart|start|restart)	test x"${rdate:-NO}" = x"NO" && exit 0	rdate $rdate_flags	;;autostop|stop)	;;*)	echo "Usage: $0 {start | stop | restart}"	exit 1	;;esacexit $?
 |