From fbcc00b070485a96810f51b728cb14d5e83a4142 Mon Sep 17 00:00:00 2001 From: Marc Michalsky Date: Wed, 6 Sep 2023 18:01:21 +0200 Subject: [PATCH] fix --compression=lz4 --- borgbackup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgbackup.sh b/borgbackup.sh index 896f0a4..d4eac33 100755 --- a/borgbackup.sh +++ b/borgbackup.sh @@ -56,7 +56,7 @@ exclude() { # Backup the most important directories into an archive named after # the machine this script is currently running on: -borg_command=("create" "--verbose" "--filter=AME" "--list" "--stats" "--show-rc" "--compression lz4" "--exclude-caches") +borg_command=("create" "--verbose" "--filter=AME" "--list" "--stats" "--show-rc" "--compression=lz4" "--exclude-caches") borg_command+=($(exclude)) borg_command+=("::backup-{hostname}-{now}" "${BORG_TARGETS[@]}")