List all repositories on server

Hi all!

Is it possible to list all repositories on the backup server? I have a remote restic server and would like to list all repositories.
I can access the repo directly, if I know the name, but I can’t list all repos owned by a user.

Best regards!

1 Like

A repository is basically just a folder that has been initiated with restic. So there is no general answer to your question. On Linux you would use ls /path/where/the/repos/are. Or if they are scattered, you could try something like find . -name snapshots, which is a folder that is part of every restic repository.

2 Likes