Skip to content

Instantly share code, notes, and snippets.

@pbt001
Forked from russelldavies/backup.sh
Created June 22, 2020 21:02
Show Gist options
  • Save pbt001/60c1d414b0f5903266d0ba7b668cc954 to your computer and use it in GitHub Desktop.
Save pbt001/60c1d414b0f5903266d0ba7b668cc954 to your computer and use it in GitHub Desktop.
Restic backup script
#!/bin/sh
if [ $# -lt 4 ]; then
echo $0: Missing arguments
echo usage: $0 repo password aws_access_key aws_secret_key
exit 1
fi
export RESTIC_PASSWORD=$1
export RESTIC_PASSWORD=$2
export AWS_ACCESS_KEY_ID=$3
export AWS_SECRET_ACCESS_KEY=$4
restic backup ~ \
--one-file-system \
--exclude-caches \
--exclude "$HOME/Applications" \
--exclude "$HOME/Downloads" \
--exclude "$HOME/Library" \
--exclude "$HOME/.Trash" \
|| noti -t "Restic Backup" -m "Failed to backup"
restic forget \
--keep-hourly 12 \
--keep-daily 7 \
--keep-weekly 5 \
--keep-monthly 6 \
--prune \
|| noti -t "Restic Backup" -m "Failed to prune"
restic check \
--with-cache \
|| noti -t "Restic Backup" -m "Check failed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment