diff --git a/skel/opt/scripts/restic/backup.sh b/skel/opt/scripts/restic/backup.sh index 071170f..f04f17b 100644 --- a/skel/opt/scripts/restic/backup.sh +++ b/skel/opt/scripts/restic/backup.sh @@ -6,7 +6,7 @@ ntfy() { ntfy -m "performing backup..." if restic \ - -r "sftp://ixvd_backup_storage//$(hostname)" \ + -r "/mnt/backup/restic/$(hostname)" \ -p "/neb/secrets/restic/$(hostname).secret" \ backup \ --tag auto \ diff --git a/skel/opt/scripts/restic/forget.sh b/skel/opt/scripts/restic/forget.sh index 6a816f7..3eac264 100644 --- a/skel/opt/scripts/restic/forget.sh +++ b/skel/opt/scripts/restic/forget.sh @@ -6,7 +6,7 @@ ntfy() { ntfy -m "forgetting old backups..." if restic \ - -r "sftp://ixvd_backup_storage//$(hostname)" \ + -r "/mnt/backups/restic/$(hostname)" \ -p "/etc/ixvd/secrets/restic/$(hostname).secret" \ forget \ --keep-last 10 \ diff --git a/skel/opt/scripts/restic/prune.sh b/skel/opt/scripts/restic/prune.sh index e112cec..4f9f5e1 100644 --- a/skel/opt/scripts/restic/prune.sh +++ b/skel/opt/scripts/restic/prune.sh @@ -6,7 +6,7 @@ ntfy() { ntfy -m "pruning old backups..." if restic \ - -r "sftp://ixvd_backup_storage//$(hostname)" \ + -r "/mnt/backups/restic/$(hostname)" \ -p "/etc/ixvd/secrets/restic/$(hostname).secret" \ prune; then notify -m "pruning succeeded"