#!/usr/bin/env bash BORGWRAPPER_BACKUP_NAME="backup-name" BORGWRAPPER_BACKUP_REPOSITORY="/mnt/myBackups/" BORGWRAPPER_BACKUP_FILES=(\ '/etc/' \ '$HOME/' \ ) BORGWRAPPER_BORG_INIT_PARAMS="--encryption=repokey-blake2" borgwrapper_pre_backup() { return; } borgwrapper_post_backup() { return; }