#!/bin/sh # # /etc/rc.d/crond - crond(8) service file # case $1 in start) /usr/sbin/crond &> /var/log/cron ;; stop) killall -q /usr/sbin/crond ;; *) echo "usage: $0 start|stop" esac # EOF