Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. no crontab for root - using an empty one 888
  2.  
  3. # /etc/crontab: system-wide crontab
  4. # Unlike any other crontab you don't have to run the `crontab'
  5. # command to install the new version when you edit this file
  6. # and files in /etc/cron.d. These files also have username fields,
  7. # that none of the other crontabs do.
  8.  
  9. SHELL=/bin/sh
  10. PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
  11.  
  12. # m h dom mon dow user command
  13. 58 * * * * root cd / && run-parts --report /etc/cron.hourly
  14. 52 0 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
  15. 46 0 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
  16. 9 5 28 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
  17. #
  18.  
  19. crontab -e
  20. # Edit this file to introduce tasks to be run by cron.
  21. #
  22. # Each task to run has to be defined through a single line
  23. # indicating with different fields when the task will be run
  24. # and what command to run for the task
  25. #
  26. # To define the time you can provide concrete values for
  27. # minute (m), hour (h), day of month (dom), month (mon),
  28. # and day of week (dow) or use '*' in these fields (for 'any').#
  29. # Notice that tasks will be started based on the cron's system
  30. # daemon's notion of time and timezones.
  31. #
  32. # Output of the crontab jobs (including errors) is sent through
  33. # email to the user the crontab file belongs to (unless redirected).
  34. #
  35. # For example, you can run a backup of all your user accounts
  36. # at 5 a.m every week with:
  37. # 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
  38. #
  39. # For more information see the manual pages of crontab(5) and cron(8)
  40. #
  41. # m h dom mon dow command
  42. "/tmp/crontab.vILdXR/crontab" 22L, 888C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement