From 61a246537f31f4edabe7228086495ca21b5ac964 Mon Sep 17 00:00:00 2001 From: misc Date: Mon, 19 May 2025 16:21:22 +0200 Subject: [PATCH] bugfix bei keyexport --- borgbackup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgbackup.sh b/borgbackup.sh index a4c624c..8e0cb63 100644 --- a/borgbackup.sh +++ b/borgbackup.sh @@ -139,7 +139,7 @@ EOF #Repokey zusätzlich lokal speichern borg_keyexport() { - [ "$BORG_ENCRYPTION" == "repokey" ] && $BORG key export "$BORG_REPO" >$BORG_PATH/encrypted-repokey && \ + [ "$BORG_ENCRYPTION" == "repokey" ] && $BORG key export "$BORG_REPO" $BORG_PATH/encrypted-repokey && \ return 0 || return 1 }