1234567891011121314151617 |
- #! /bin/bash
- echo ""
- echo "Starting aws backup - $(date)" | tee -a /scratch/aws-backup.log
- if [[ ! -v DEST_S3 ]]; then
- echo "Must specify DEST_S3 as an env variable" | tee -a /scratch/aws-backup.log
- exit -1
- fi
- aws s3 sync /source ${DEST_S3} \
- --delete \
- --exclude gogs/gogs/log/* \
- --exclude gogs/gogs/data/sessions/* \
- 2>&1 | tee -a /scratch/aws-backup.log
- echo "Backup Completed - $(date)" | tee -a /scratch/aws-backup.log
|