#!/bin/sh
# Startup script for anacron
#
# chkconfig: 2345 95 05
# This dependency is erroneous, and is supposed to be
# excluded via an rdf expression along the lines of:
# <rdf:Description about="file:/$directory/anacron"> <serel:parse>false</serel:parse> </rdf:Description>
### BEGIN INIT INFO
# Provides: anacron
# Requires: apmd
### END INIT INFO

# Source function library.

prog="anacron"

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

esac

exit 0
