This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
bash_scripts/general/backup/borg-backup.sh

9 lines
277 B
Bash
Executable File

#!/bin/bash
export BORG_REPO='borg@finoglio.2li.local:/mnt/sda/backup/python'
export BORG_PASSPHRASE=Password
borg create -v --stats ::$(hostname)_$(date -I) /home/andreas/
borg prune --prefix $(hostname)_201 --keep-daily=7 --keep-weekly=4 --keep-monthly=12 --keep-yearly=1