btrbk/btrbk.conf
2022-07-04 16:46:55 +02:00

24 lines
810 B
Bash

#!/bin/bash
#The Fingerprint of the PGP Public Key you want to use to encrypt your Backups
PUBKEY="DB7D3FF57FB85CC81A1D4675371DB61AC29E4986"
#Path of the Subvolumes to Backup
SUBVOLS=("/" "/home")
#Names that should be associated with the local Subvolumes on the remote storage
#VOLNAME has to be in the same order as SUBVOLS to be interpreted correctly
VOLNAME=("root" "home")
#btrfs volume too keep snapshots in
SNAPDIR="/.snapshots/"
#Rclone Directory on remote storage
RCLONEDIR="test:/mnt/bk/new/"
#Suffix name for incremental/full backups and retention
#example: YYYY-mm-full and will keep the last two backups
#For full Backups dont set retention below 1 or you will always delete your current backup which renders all following incremental backups useless
FULL=("full" "2")
INCR=("incr" "1")