Hi,
Would just like some validation before I go ahead with an operation to cull unneeded snapshots.
My current setup is
restic backupsent to a rest-server instance running on a local serverrclone copy –immutableon the server to sync the data to cloud storage
The repo is getting large and so I’d like to prune some unnecessary snapshots. I found the docs for how to do that using restic but am wondering how to also remove the data from the cloud.
My best guess is to do something like
- use
restic forgetto remove the unnecessary snapshots from my local repo - run a one-time
rclone syncto synchronize the local repo to the cloud
In theory this should reset the cloud to exactly match the local repo after the snapshots have been removed.
Any concerns with this approach? Is there a safer alternative?
Thanks in advance!