fix --filter=AME

This commit is contained in:
Marc Koch 2023-09-06 18:00:13 +02:00
parent 0edf08d93e
commit 88cb299e03
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ exclude() {
# Backup the most important directories into an archive named after # Backup the most important directories into an archive named after
# the machine this script is currently running on: # 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+=($(exclude))
borg_command+=("::backup-{hostname}-{now}" "${BORG_TARGETS[@]}") borg_command+=("::backup-{hostname}-{now}" "${BORG_TARGETS[@]}")