#!/bin/sh
#
# /etc/rc.d/crond: start/stop cron daemon
#

if [ "$1" = "start" ]; then
    /usr/sbin/crond &> /var/log/crond
elif [ "$1" = "stop" ]; then
    killall -q /usr/sbin/crond
else
    echo "usage: $0 start|stop"
fi

# End of file
