1
0

README 744 B

12345678910111213141516
  1. Run scripts or jobs on a weekly basis
  2. =====================================
  3. Any scripts or jobs added to this directory will be run on a scheduled basis
  4. (weekly) using run-parts.
  5. run-parts ignores any files that are hidden or dotfiles (.*) or backup
  6. files (*~ or *,) or named *.{rpmsave,rpmorig,rpmnew,swp,cfsaved} and handles
  7. the files named jobs.deny and jobs.allow specially.
  8. In this specific example, the chronograph script is the only script or job file
  9. executed on a weekly basis (due to white-listing it in jobs.allow). And the
  10. README and chrono.dat file are ignored either as a result of being black-listed
  11. in jobs.deny or because they are NOT white-listed in the jobs.allow file.
  12. For more details, please see ../README.cron file.