I am trying to run boto-rsync
using script.sh
:
#!/bin/bash
echo `date`
echo "start"
boto-rsync -d 2 -a <access key> -s <secure key> s3://db-dump/hourly/2013/ /mnt/dir
echo "stop"
It works perfectly fine.
But when I run this using crontab
, it ignores boto-rsync
line.
Can anybody help?