2024-09-01 10:50:55 -04:00
|
|
|
# This is the base configuration used my multiple agents.
|
|
|
|
|
|
|
|
# This is where persistent larger files reside. Including the SystemRescueCD and Backup ISO's reside.
|
|
|
|
# NOTE: This is not where actual backups will reside.
|
2024-09-02 15:06:33 -04:00
|
|
|
systemrescue_data_dir="/var/backups/systemrescue-backup"
|
2024-09-01 10:50:55 -04:00
|
|
|
|
|
|
|
# Backup Engine to use:
|
|
|
|
# Options are either resticprofile or borgmatic.
|
2024-09-02 15:06:33 -04:00
|
|
|
backup_engine="resticprofile"
|
2024-09-01 10:50:55 -04:00
|
|
|
|
|
|
|
# ResticProfile Options:
|
|
|
|
# These are versions of restic and resticprofile to download and use with the
|
|
|
|
# SystemRescueBackup recovery image.
|
2024-09-02 15:06:33 -04:00
|
|
|
restic_version="0.17.0"
|
|
|
|
resticprofile_version="0.28.0"
|
2024-09-01 10:50:55 -04:00
|
|
|
|
|
|
|
# Borgmatic Options:
|
|
|
|
# This is the SystemRescueBackup SRM Module to include in the recovery image.
|
|
|
|
# To generate this, boot a SystemRescueCD in a VM, run:
|
|
|
|
# pacman -Sy borgmatic
|
|
|
|
# cowpacman2srm borgmatic.srm
|
|
|
|
# And upon success, copy the borgmatic.srm to your host system and provide
|
|
|
|
# the path to it here:
|
2024-09-02 15:06:33 -04:00
|
|
|
borgmatic_srm=""
|
2024-09-01 10:50:55 -04:00
|
|
|
|
|
|
|
# SystemRescueCD Version to Download and Use. If you're using borgmatic, this
|
|
|
|
# version will be relevant to the previously provided borgmaticSRM module.
|
2024-09-02 15:06:33 -04:00
|
|
|
systemrescuecd_version="11.02"
|
2024-09-01 10:50:55 -04:00
|
|
|
|
|
|
|
# Temporary working directory, mostly for downloads to generate the
|
|
|
|
# SystemRescueBackup disc image.
|
2024-09-02 15:06:33 -04:00
|
|
|
systemrescue_temp_dir="/tmp/systemrescue-backup"
|