есть написан sh скрипт, который делает backup бд и заливает его на amazon.
#!/bin/bash
#get the day of week as a number (i.e. 1 = Monday, 7 = Sunday)
#backup 'my_database' to the folder /var/local/backups/mysql/
#$DAY_OF_WEEK is appendend to the file's name in order to keep a weekly history of the backups
mysqldump -u root -p3uUtcLLm online-tour > /var/local/online-tour-back1.sql
#use aws (Amazon's tool) to sync your backups to Amazon S3
#/usr/local/bin/aws - absolute path to Amazon's CLI tool
#s3 - the service we want to use
#sync - the command to run
#/var/local/backups/mysql/ - local folder
#s3://my-backups/mysql/ - Amazon s3 folder
aws s3 sync /var/local s3://apstay2017/Databases/
мой crontab
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
# m h dom mon dow user command
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
33 * * * * root /bin/bash /var/autobackup.sh
#
Проблема состоит в том, что бекап делается но он не заливается на амазон.
В чем я ошыбся?