system-helpers/usr/share/doc/borgwrapper/.borgwrapper.conf.example

17 lines
295 B
Text
Raw Normal View History

2019-04-09 17:11:22 +00:00
#!/usr/bin/env bash
2019-01-25 17:28:29 +00:00
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;
}