# Control file for rsbackup # determines when backups will exist, and who will receive any error # reports PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin # following may be changed to send failure reports to a different e-mail # account MAILTO=root # daily do a standard backup if previous run has finished m h dom mon dow user command 00 1 * * * root if ! pgrep rsync ; then /usr/sbin/rsbackup; fi # if you need to kill backup processes after a certain time, uncomment the # following. This would kill any backup jobs running at 7am on any day #0 7 * * * root pkill rsync # EOF