# Borg Configuration

borg_path=borg@backup.example.org
borg_repo=REPONAME
borg_localrepo=0 # set 1 for localrepos to avoid a : in reponame
borg_encryption="repokey"
borg_compression="lzma,6"
borg_prune="--keep-within=1d --keep-daily=7 --keep-weekly=4 --keep-monthly=6"

# exclude: List of directories - separated with spaces - without "'" 
borg_exclude=""
# As an alternative: you can provide an exclude file in /etc/borg/PROFILE_NAME/exclude
# Exclude TAG: All directories, with a file of this name will be excluded
borg_exclude_tag="--exclude-if-present NOBACKUP.TAG"

# backup_source : List of directories for the backup
# ****** WARNING Backup is limited to one filesystem per default *****
backup_source="/"
# all_filesystems="1" # uncomment for not stopping on filesystem borders

borg_logfile=/var/log/borg/$borg_repo.log

# some options for borg backup (only backup ...) like --stats -v --...
borg_options="--stats"


borg_command=/usr/bin/borg
export BORG_PASSPHRASE='VERYVERYSECRETPASSWORD'

# you should change the caching directory:
export BORG_CACHE_DIR='.root/borgcache'
