home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20110502.etc.tar.gz / bradford.20110502.etc.tar / etc / cron.daily / suse.de-cron-local < prev   
Text File  |  2003-09-01  |  371b  |  25 lines

  1. #!/bin/sh
  2. #
  3. #
  4. # Copyright (c) 2002 SuSE Linux AG, Nuernberg, Germany.   
  5. #
  6. # please send bugfixes or comments to http://www.suse.de/feedback.
  7. #
  8.  
  9.  
  10. #
  11. # paranoia settings
  12. #
  13. umask 022
  14.  
  15. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  16. export PATH
  17.  
  18. # now start the local cron.daily file, if it exists.
  19.  
  20. if [ -f /root/bin/cron.daily.local ] ; then
  21.     . /root/bin/cron.daily.local
  22. fi
  23.  
  24. exit 0
  25.