From 902ccbc90b8e3bf47c505df3b8d677742cf56bb0 Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 16 Dec 2023 20:57:53 +0100 Subject: [PATCH] backups borgbackup: remove dry-run from restore --- clanModules/borgbackup.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clanModules/borgbackup.nix b/clanModules/borgbackup.nix index 4ee06a65..6bfbe632 100644 --- a/clanModules/borgbackup.nix +++ b/clanModules/borgbackup.nix @@ -83,7 +83,7 @@ in set -efu cd / IFS=';' read -ra FOLDER <<< "$FOLDERS" - yes y | borg-job-"$JOB" extract --list --dry-run "$LOCATION"::"$ARCHIVE_ID" "''${FOLDER[@]}" + yes y | borg-job-"$JOB" extract --list "$LOCATION"::"$ARCHIVE_ID" "''${FOLDER[@]}" ''; }; };