home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / anacron / README.Debian < prev    next >
Encoding:
Text File  |  2006-07-20  |  751 b   |  21 lines

  1. anacron for DEBIAN
  2. ----------------------
  3.  
  4. Anacron runs transparent to the system.  In other words, you should never be
  5. aware that anacron and not cron is taking care of your cron jobs.  Jobs
  6. registered via cron are run by anacron instead.
  7.  
  8. To avoid cron and anacron running the same job, place a line like:
  9.  
  10. test -x /usr/sbin/anacron || run-parts
  11.  
  12. in your crontab.  This will check if anacron exists and if not, it will let
  13. cron do its thing.  The advantage is that if you later remove anacron, this
  14. will still work.
  15.  
  16. N.B. Note that on current Debian systems crontab should look like this already.
  17.  
  18. anacron leaves messages in /var/log/syslog and /var/log/messages by default.
  19.  
  20. Sean 'Shaleh' Perry <shaleh@debian.org>, Tue, 30 Mar 1999 13:38:25 -0500
  21.