#! /bin/sh
#
# cron		Start/Stop the cron clock daemon.
#
# Version:	@(#) /etc/init.d/cron 1.01 05-Nov-1993
#
# Author:	Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org>
#

  # Source function library.
  . /etc/init.d/functions

  # See how we were called.
  case "$1" in
    start)
	echo -n "Starting CRON clock daemon "
	daemon /usr/sbin/cron
	echo
	;;
    stop)
	echo -n "Shutting down CRON clock daemon "
	killproc /usr/sbin/cron
	echo
	;;
    *)
	# Oops someone made a typo.
	echo "Usage: /etc/init.d/cron {start|stop}"
	exit 1
  esac

  exit 0
