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