#! /bin/sh

# This script makes anacron jobs start to run when the machine is
# resumed from suspend or hibernate.

case "$1" in
  resume|thaw)
    /usr/sbin/invoke-rc.d anacron start >/dev/null   
    ;;
esac
