#!/bin/sh
#
# crond
#
case $1 in

	start)
		echo "crond starting"
		/usr/sbin/crond
		;;

esac

