Last active
September 25, 2017 15:44
-
-
Save autarch/260e0e2d3e42567fe2ecc0d50ada87e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| set -x | |
| BORG_REPO="/home/autarch/backup/houseabsolute.urth.org.borg" | |
| export BORG_KEYS_DIR=/home/autarch/.config/borg/keys | |
| DATE=$(date '+%Y-%m-%d') | |
| borg create $BORG_REPO::$DATE -C lzma,9 /home/autarch/mnt/backup /home/autarch/mnt/music $@ | |
| borg prune $BORG_REPO --keep-daily=7 --keep-weekly=5 --keep-monthly=6 $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment