From: Martin Pitt Date: Mon, 6 Jan 2025 07:42:03 +0000 (+0100) Subject: backup: Adjust server backup passphrase path X-Git-Url: https://piware.de/gitweb/?a=commitdiff_plain;h=5c4479410384f85e088aed156b32b4cce944db4c;p=bin.git backup: Adjust server backup passphrase path --- diff --git a/backup b/backup index 9593143..79dc369 100755 --- a/backup +++ b/backup @@ -43,8 +43,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 .cache/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 backup/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 .cache/backup-passphrase --repo backup/restic check || fail "BACKUP CHECK FAILED!" +ssh piware.de restic --password-file backup/backup-passphrase --repo backup/restic check || fail "BACKUP CHECK FAILED!" notify-send "Backup checked successfully"