mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
14 lines
588 B
Plaintext
14 lines
588 B
Plaintext
Enhancement: `find --pack` fallback to index if data file is missing
|
|
|
|
When investigating a repository with missing data files, it might be useful to
|
|
determine affected snapshots before running `rebuild-index`. Previously,
|
|
`find --pack pack-id` returned no data as it required accessing the data file.
|
|
Now, if the necessary data is still available in the repository index, it gets
|
|
retrieved from there.
|
|
|
|
The command now also supports looking up multiple pack files in a single `find`
|
|
run.
|
|
|
|
https://github.com/restic/restic/pull/3427
|
|
https://forum.restic.net/t/missing-packs-not-found/2600
|