mirror of
https://github.com/kopia/kopia.git
synced 2025-12-23 22:57:50 -05:00
Ref: #4341 --------- Co-authored-by: Julio Lopez <1953782+julio-lopez@users.noreply.github.com>
44 lines
952 B
Go
44 lines
952 B
Go
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
|
|
}
|