kmwoley / restic-windows-backup

Powershell scripts to run Restic backups on Windows
MIT License
330 stars 68 forks source link

Feature Request: Implementing 3-2-1 backup strategy #97

Open toskium opened 7 months ago

toskium commented 7 months ago

My current understanding of restic-windows-backup is that it only allows for one restic repository to save backups to. With the PR #96 one can add additional parameters to employ rclone but it does not allow for multiple repositories.

What I would like to do is the following:

  1. define local restic repository on a NAS
  2. define rclone remote on some cloud storage
  3. run restic-backup to store everything on the local restic repository
  4. run rclone after restic-backup has finished and sync all the new files to the defined rclone remote (possibly multiple rclone remotes)
  5. When doing restic-backup maintenance also do rclone remote maintenance to check if everything is in order.

Is this feature request in alignment with the project?