Hi Matt,
The backup process is fired up from the file /etc/cron.d/backup
You could create a custom template for the /etc/cron.d/backup file :-
mkdir -p /etc/e-smith/templates-custom/etc/cron.d
cp /etc/e-smith/templates/etc/cron.d/backup /etc/e-smith/templates-custom/etc/cron.d
then modify the backup entry :-
pico /etc/e-smith/templates-custom/etc/cron.d/backup
About the 8th line from the end of the file (on my SME 5.6),
."$backupMin $backupHour * * * root"
Change the last " * " to the days you want backup to run :-
Eg. to run only Monday to Fridays,
."$backupMin $backupHour * * 1-5 root"
Save the file, and expand the template.
/sbin/e-smith/expand-template /etc/cron.d
I can't remember exactly, you may or may not need to "touch" crontab in order for the cron daemon to reload the cron table entries. If you have to, type :-
touch /etc/crontab
If not, don't worry about it. Even if you did do the touch command, it would not harm anything.
Hope this helps.
Kelvin