From 81d26888a5e6ff781725980173d41f16ca71b3e1 Mon Sep 17 00:00:00 2001 From: drunkendog Date: Mon, 19 Dec 2022 18:00:24 +0000 Subject: [PATCH] Update 'backup/backup-script.sh' --- backup/backup-script.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backup/backup-script.sh b/backup/backup-script.sh index 4c76f11..e36764e 100644 --- a/backup/backup-script.sh +++ b/backup/backup-script.sh @@ -11,7 +11,7 @@ info "Starting backup" # Backup the most important directories into an archive named after # the machine this script is currently running on: -borg create \ +./borg-linux64 create \ --verbose \ --filter AME \ --list \ @@ -32,7 +32,7 @@ info "Pruning repository" # limit prune's operation to this machine's archives and not apply to # other machines' archives also: -borg prune \ +./borg-linux64 prune \ --list \ --prefix '{hostname}-' \ --show-rc \ @@ -46,7 +46,7 @@ prune_exit=$? info "Compacting repository" -borg compact +./borg-linux64 compact compact_exit=$?