#!/bin/sh
# Startup script for anacron
#
# chkconfig: 2345 95 05
# description: Run cron jobs that were left out due to downtime

# Source function library.

prog="anacron"

case "$1" in
	start)
	    ;;
	
	stop)
	    ;;
	
	*)
	    echo $"Usage: $0 {start|stop}"
	    exit 1

esac

exit 0
