# /etc/crontab: system-wide crontab
# This is the main crontab used by systemd-cron
# Unlike any other crontab you don't have to run the "crontab"
# command to install the new version when you edit this file
# and files in /etc/cron.d.
# These files also have username fields, that none of the other crontabs do.
#
# See manpages crontab(1), crontab(5) and anacrontab(5) for more info
#
# Note: /etc/cron.* directories are handled separately, no run-parts here for them.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# Format of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed

# Directives like '*/5' mean "every 5 (minutes,hours,whatever)"
# Supports special directives like @daily, @monthly, etc... in place of the 1st 5 columns

# Examples:
#* * * * * root echo "minutely echo"
#@daily systemd-resolve echo "echo something daily as the systemd-resolve user"
#*/5 * */10 1-6,8-10 7 root echo "A random echoing cron"
# Above echos every 5 minutes every hour every 10 days months 1-6 and 8-10 on sundays
