
case "$1" in

	start)
		/usr/sbin/crond
		date
		;;
	stop)
		echo stop
		;;
	restart)
		echo restart
		;;	
	*)
		echo "Usage: $(basename $0) {start|stop|restart}"
		exit 1
esac

exit 0
