mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
forget: refuse deleting the last snapshot in a snapshot group
`--keep-tag invalid-tag` was previously able to wipe all snapshots in a repository. As a user specified a `--keep-*` option this is likely unintentional. This forbid deleting all snapshot if a `--keep-*` option was specified to prevent data loss. (Not specifying such an option currently also causes the command to abort)
This commit is contained in:
parent
d106ad6921
commit
c0e1f36830
@ -3,6 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
@ -248,6 +249,10 @@ func runForget(ctx context.Context, opts ForgetOptions, pruneOptions PruneOption
|
|||||||
|
|
||||||
keep, remove, reasons := restic.ApplyPolicy(snapshotGroup, policy)
|
keep, remove, reasons := restic.ApplyPolicy(snapshotGroup, policy)
|
||||||
|
|
||||||
|
if !policy.Empty() && len(keep) == 0 {
|
||||||
|
return fmt.Errorf("refusing to delete last snapshot of snapshot group %v", key)
|
||||||
|
}
|
||||||
|
|
||||||
if len(keep) != 0 && !gopts.Quiet && !gopts.JSON {
|
if len(keep) != 0 && !gopts.Quiet && !gopts.JSON {
|
||||||
printer.P("keep %d snapshots:\n", len(keep))
|
printer.P("keep %d snapshots:\n", len(keep))
|
||||||
PrintSnapshots(globalOptions.stdout, keep, reasons, opts.Compact)
|
PrintSnapshots(globalOptions.stdout, keep, reasons, opts.Compact)
|
||||||
|
@ -24,7 +24,7 @@ type SnapshotFilter struct {
|
|||||||
TimestampLimit time.Time
|
TimestampLimit time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *SnapshotFilter) empty() bool {
|
func (f *SnapshotFilter) Empty() bool {
|
||||||
return len(f.Hosts)+len(f.Tags)+len(f.Paths) == 0
|
return len(f.Hosts)+len(f.Tags)+len(f.Paths) == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,7 +173,7 @@ func (f *SnapshotFilter) FindAll(ctx context.Context, be Lister, loader LoaderUn
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Give the user some indication their filters are not used.
|
// Give the user some indication their filters are not used.
|
||||||
if !usedFilter && !f.empty() {
|
if !usedFilter && !f.Empty() {
|
||||||
return fn("filters", nil, errors.Errorf("explicit snapshot ids are given"))
|
return fn("filters", nil, errors.Errorf("explicit snapshot ids are given"))
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
@ -66,6 +66,20 @@ type SnapshotGroupKey struct {
|
|||||||
Tags []string `json:"tags"`
|
Tags []string `json:"tags"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *SnapshotGroupKey) String() string {
|
||||||
|
var parts []string
|
||||||
|
if s.Hostname != "" {
|
||||||
|
parts = append(parts, fmt.Sprintf("host %v", s.Hostname))
|
||||||
|
}
|
||||||
|
if len(s.Paths) != 0 {
|
||||||
|
parts = append(parts, fmt.Sprintf("path %v", s.Paths))
|
||||||
|
}
|
||||||
|
if len(s.Tags) != 0 {
|
||||||
|
parts = append(parts, fmt.Sprintf("tags %v", s.Tags))
|
||||||
|
}
|
||||||
|
return strings.Join(parts, ", ")
|
||||||
|
}
|
||||||
|
|
||||||
// GroupSnapshots takes a list of snapshots and a grouping criteria and creates
|
// GroupSnapshots takes a list of snapshots and a grouping criteria and creates
|
||||||
// a grouped list of snapshots.
|
// a grouped list of snapshots.
|
||||||
func GroupSnapshots(snapshots Snapshots, groupBy SnapshotGroupByOptions) (map[string]Snapshots, bool, error) {
|
func GroupSnapshots(snapshots Snapshots, groupBy SnapshotGroupByOptions) (map[string]Snapshots, bool, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user