I'm new to crontab and I thought I understood how it works, but apparently not. What am I doing wrong ?
I have added a few line in cron using :
crontab -e
I believe the following line should do this :
- run every 1/4 houres rsnapshot hourly
- run at 3:30 every day rsnapshot daily
- run at 3:00 once in a week (monday) rsnapshot weekly
run at 2:30 once in a month (the 1st of each month) rsnapshot monthly
0 */15 * * * /usr/bin/rsnapshot hourly 30 3 * * * /usr/bin/rsnapshot daily 0 3 * * 1 /usr/bin/rsnapshot weekly 30 2 1 * * /usr/bin/rsnapshot monthly
I have been waiting about 2 houres now, and rsnapshot hourly didn't happened.
Can someone explain me what I missed ?