mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 21:24:11 +01:00
18 lines
494 B
Markdown
18 lines
494 B
Markdown
# 🐣 Examples
|
|
|
|
## List all the snapshots for all the backends
|
|
|
|
```bash
|
|
autorestic exec -av -- snapshots
|
|
```
|
|
|
|
## Unlock a locked repository
|
|
|
|
This can come in handy if a backup process crashed or if it was accidentally cancelled. Then the repository would still be locked without an actual process using it. Only do this if you know what you are sure no other process is actually reading/writing to the repository of course.
|
|
|
|
```bash
|
|
autorestic exec -b my-backend -- unlock
|
|
```
|
|
|
|
> :ToCPrevNext
|