forked from kopia/kopia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommand_policy_remove.go
More file actions
43 lines (33 loc) · 952 Bytes
/
Copy pathcommand_policy_remove.go
File metadata and controls
43 lines (33 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package cli
import (
"context"
"github.com/pkg/errors"
"github.com/kopia/kopia/repo"
"github.com/kopia/kopia/snapshot/policy"
)
type commandPolicyDelete struct {
policyTargetFlags
dryRun bool
}
func (c *commandPolicyDelete) setup(svc appServices, parent commandParent) {
cmd := parent.Command("delete", "Remove policy.").Alias("remove").Alias("rm")
c.policyTargetFlags.setup(cmd)
cmd.Flag("dry-run", "Do not remove").Short('n').BoolVar(&c.dryRun)
cmd.Action(svc.repositoryWriterAction(c.run))
}
func (c *commandPolicyDelete) run(ctx context.Context, rep repo.RepositoryWriter) error {
targets, err := c.policyTargets(ctx, rep)
if err != nil {
return err
}
for _, target := range targets {
log(ctx).Infof("Removing policy on %q...", target)
if c.dryRun {
continue
}
if err := policy.RemovePolicy(ctx, rep, target); err != nil {
return errors.Wrapf(err, "error removing policy on %v", target)
}
}
return nil
}