From bd4bb200149421091109e070cbfc433865e1c011 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 23 Feb 2026 10:03:35 +0100 Subject: [PATCH] backup: Fix temporary remote passphrase path --- backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backup b/backup index acee348..1c85d55 100755 --- a/backup +++ b/backup @@ -46,8 +46,8 @@ scp .config/backup-passphrase piware.de:.cache/ ssh piware.de chmod u+w .cache/backup-passphrase trap "ssh piware.de shred -u .cache/backup-passphrase" EXIT INT QUIT PIPE -ssh piware.de restic --password-file backup/backup-passphrase --repo backup/restic forget --prune --keep-within-hourly 24h --keep-within-daily 7d --keep-within-weekly 30d --keep-within-monthly 12m +ssh piware.de restic --password-file .cache/backup-passphrase --repo backup/restic forget --prune --keep-within-hourly 24h --keep-within-daily 7d --keep-within-weekly 30d --keep-within-monthly 12m notify-send "Backup pruned successfully" -ssh piware.de restic --password-file backup/backup-passphrase --repo backup/restic check || fail "BACKUP CHECK FAILED!" +ssh piware.de restic --password-file .cache/backup-passphrase --repo backup/restic check || fail "BACKUP CHECK FAILED!" notify-send "Backup checked successfully" -- 2.47.3