#!/bin/sh # # anacron executes commands at specific periods, but does not assume that # the machine is running continuously #description "anac(h)ronistic cron" case "$1" in start) . /etc/init.d/rc.functions echo "Starting anacron:" anacron -s >>/dev/stdlog 2>&1 &2 exit 1 esac