How to delete all snapshots for a specific host?

How can I delete all snapshots for a specific host?

I could write a bash script to retrieve all ids for a host and delete them one by one. However, isn’t there an easier way?

How about:

kopia snapshot delete --hostname <host-name> --all

You may need to specify --delete to do the actual deletion.

1 Like

Sorry, I missed your reply. Thank you for your answer.