]> piware.de Git - bin.git/commitdiff
backup: Fix temporary remote passphrase path
authorMartin Pitt <martin@piware.de>
Mon, 23 Feb 2026 09:03:35 +0000 (10:03 +0100)
committerMartin Pitt <martin@piware.de>
Mon, 23 Feb 2026 09:03:35 +0000 (10:03 +0100)
backup

diff --git a/backup b/backup
index acee348bf5c7fb60dd88a18965eebb65bebfb02c..1c85d553dc6223861629cd54a44b3e5a510360e6 100755 (executable)
--- 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"