I've added a file called
bakk - to /etc/cron.d
The file contains
00 22 * * * root /sbin/bak1
00 23 * * * root /sbin/bak2
Then in /sbin I have bak1 & bak2 - with chmod 775
bak1
rsync -ar --delete /home/e-smith/files/ibays 192.168.1.100::backup
bak2
rsync -ar --delete /home/e-smith/files/ibays 192.168.1.101::backup
Thing is it does NOT work
I can run bak1 & bak2 manually and they execute
What am I doing wrong?