summaryrefslogtreecommitdiffstats
path: root/backup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'backup.sh')
-rwxr-xr-xbackup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/backup.sh b/backup.sh
index 2301ce9..f1a90e8 100755
--- a/backup.sh
+++ b/backup.sh
@@ -127,7 +127,7 @@ backup_borg() {
local src=("$@")
local -a options=(
--verbose
- --numeric-owner
+ --numeric-ids
--compression lz4
--exclude-from "$TMPDIR/exclude-list-borg"
)
@@ -140,7 +140,7 @@ backup_borg() {
# Only purge when doing full backups. Increases partial backup speed and
# ensure that we have at least one recent full backup when we purge.
- if [[ $backup_prefix == 'backup-' ]]; then
+ if [[ $backup_prefix == 'backup' ]]; then
borg prune --prefix "backup-" --keep-within 7d --keep-daily 7 --keep-weekly 12 --keep-monthly 6 --keep-yearly 0 -v "$dst"
borg prune --prefix "partial-" --keep-within 31d -v "$dst"
fi