Some checks failed
Ansible Dry Run / Explore-Gitea-Actions (push) Failing after 22s
19 lines
761 B
Text
19 lines
761 B
Text
OUTPUT=ISO
|
|
OUTPUT_URL=sshfs://{{ rear_backup_user }}@{{rear_backup_server}}{{ rear_backup_path }}
|
|
|
|
BACKUP=NETFS
|
|
BACKUP_URL=sshfs://{{ rear_backup_user }}@{{rear_backup_server}}{{ rear_backup_path }}
|
|
BACKUP_PROG_EXCLUDE=("${BACKUP_PROG_EXCLUDE[@]}" '/media' '/var/tmp' '/var/crash' '/some/path/to/exclude/*' '/other/stuff/*.bz2')
|
|
|
|
CLONE_ALL_USERS_GROUPS=yes
|
|
|
|
# Set pigz for tar, instead of default "--gzip" so we use all CPU cores
|
|
BACKUP_PROG_COMPRESS_OPTIONS=( --use-compress-program=pigz )
|
|
# Make sure the rescue ISO includes the pigz binary or restore will fail
|
|
REQUIRED_PROGS=("${REQUIRED_PROGS[@]}" 'pigz')
|
|
|
|
# include private keys in the rescue ISO
|
|
SSH_FILES=yes
|
|
# include private keys without passphrase in the rescue ISO
|
|
SSH_UNPROTECTED_PRIVATE_KEYS=yes
|
|
|