17 lines
522 B
Text
Executable file
17 lines
522 B
Text
Executable file
#
|
|
# egbackup, copyright 2005 egressive limited, www.egressive.com
|
|
#
|
|
# run system backups
|
|
#
|
|
# daily - at 2:30 am, mon-sat
|
|
30 2 * * mon,tue,wed,thu,fri,sat root /etc/egscripts/egbackup/egbackup daily
|
|
#
|
|
# weekly - at 2:30 am, sun
|
|
30 2 * * sun root /etc/egscripts/egbackup/egbackup weekly
|
|
#
|
|
# monthly - at 3:30 am, on the first of the last of the month
|
|
30 3 1 * * root /etc/egscripts/egbackup/egbackup monthly
|
|
#
|
|
# yearly - at 1:30 am, on the last day of the year
|
|
30 1 1 1 * root /etc/egscripts/egbackup/egbackup yearly
|
|
|