From e158db36f1144d0f23f741d4e0f313cd6cdc04a7 Mon Sep 17 00:00:00 2001 From: Martin Ortbauer Date: Thu, 19 Sep 2024 09:35:07 +0200 Subject: [PATCH] also run borg compact to actually free disk space --- create-backup | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/create-backup b/create-backup index 86a6ff5..0c71424 100755 --- a/create-backup +++ b/create-backup @@ -73,7 +73,9 @@ borg prune \ --glob-archives '{hostname}-*' \ --keep-daily 6 \ --keep-weekly 3 \ - --keep-monthly 5 \ + --keep-monthly 5 + +borg compact log "Create remote borg backup" @@ -89,4 +91,6 @@ borg prune \ --keep-weekly 3 \ --keep-monthly 5 \ +borg compact + log "Backup finished ----------------------"