Default config file info update

This commit is contained in:
Clemens Schwaighofer
2025-12-03 14:12:24 +09:00
parent d0e96a82e0
commit 4a95049d4f

View File

@@ -15,19 +15,17 @@ TARGET_BORG_PATH="";
TARGET_FOLDER=""; TARGET_FOLDER="";
# the backup file (folder) for this host $(hostname), must end with .borg # the backup file (folder) for this host $(hostname), must end with .borg
BACKUP_FILE=""; BACKUP_FILE="";
# compression settings (empty for none, lz4, zstd, zlib, lzma) # compression settings (none, lz4, zstd, zlib, lzma)
# level, if empty then default, else number between 0 and 9, or 1 to 22 for zstd # empty is default zstd
# default is zstd, 3
COMPRESSION=""; COMPRESSION="";
# compression level, if empty then default 3, else number between 0 and 9, or 1 to 22 for zstd
COMPRESSION_LEVEL=""; COMPRESSION_LEVEL="";
# encryption settings: # encryption settings:
# SHA-256: 'none', 'authenticated', 'repokey', 'keyfile' # SHA-256: 'none', 'authenticated', 'repokey', 'keyfile'
# BLAKE2b: 'authenticated-blake2', 'repokey-blake2', 'keyfile-blake2' # BLAKE2b: 'authenticated-blake2', 'repokey-blake2', 'keyfile-blake2'
# Note: none does not encrypt # Note: none does not encrypt and is not recommended
# Blank passwords allowed for only key (if used, use keyfile)
# Default is keyfile # Default is keyfile
# passwords have to be set via BORG_PASSPHRASE or BORG_PASSCOMMAND # Blank passwords allowed for only keyfile, else passwords have to be set via BORG_PASSPHRASE or BORG_PASSCOMMAND
# keyfile can have blank passwords
# See: http://borgbackup.readthedocs.io/en/stable/faq.html#how-can-i-specify-the-encryption-passphrase-programmatically # See: http://borgbackup.readthedocs.io/en/stable/faq.html#how-can-i-specify-the-encryption-passphrase-programmatically
ENCRYPTION="" ENCRYPTION=""
# force repository verify, default is off, set to true for verify on every run # force repository verify, default is off, set to true for verify on every run