2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 10:00:48 +00:00

cmd_check: Don't display unused blobs by default

This commit is contained in:
Alexander Neumann 2015-11-08 20:46:52 +01:00
parent db41102bfa
commit cd948b56ac

View File

@ -10,8 +10,9 @@ import (
) )
type CmdCheck struct { type CmdCheck struct {
ReadData bool `long:"read-data" description:"Read data blobs" default:"false"` ReadData bool `long:"read-data" description:"Read data blobs" default:"false"`
RemoveOrphaned bool `long:"remove" description:"Remove data that isn't used" default:"false"` RemoveOrphaned bool `long:"remove" description:"Remove data that isn't used" default:"false"`
CheckUnused bool `long:"check-unused" description:"Check for unused blobs" default:"false"`
global *GlobalOptions global *GlobalOptions
} }
@ -106,8 +107,11 @@ func (cmd CmdCheck) Execute(args []string) error {
} }
} }
for _, id := range chkr.UnusedBlobs() { if cmd.CheckUnused {
cmd.global.Verbosef("unused blob %v\n", id.Str()) for _, id := range chkr.UnusedBlobs() {
cmd.global.Verbosef("unused blob %v\n", id.Str())
errorsFound = true
}
} }
if foundOrphanedPacks && cmd.RemoveOrphaned { if foundOrphanedPacks && cmd.RemoveOrphaned {