Skip to content

Instantly share code, notes, and snippets.

@autarch
Last active September 25, 2017 15:44
Show Gist options
  • Select an option

  • Save autarch/260e0e2d3e42567fe2ecc0d50ada87e0 to your computer and use it in GitHub Desktop.

Select an option

Save autarch/260e0e2d3e42567fe2ecc0d50ada87e0 to your computer and use it in GitHub Desktop.
#!/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