Doing a bit of prune testing with duplicacy cli and running into issues - perhaps I misunderstand what’s going on.
Let’s say that I want to delete an entire remote backup, but keep my current files. For the purposes of this example, I have a folder named source
and one named remote
. They are both local (for simplicity).
I have done the following:
cd /path/to/source
echo "this is a test" > test.txt
duplicacy init archive /path/to/remote
duplicacy backup (repeat 5 times to make 5 dummy snapshots)
duplicacy prune -d -a
I would expect to see a list of all 5 backups that would be deleted, but instead I get No snapshot to delete
. If I instead run
duplicacy prune -d -keep 1:1
I also get no snapshot to delete
I would expect to see snapshots 1-4 listed for deletion, with just snapshot 5 remaining.
What am I misunderstanding here?