CLI: Allow deleting multiple snapshot at once

This commit is contained in:
Orsiris de Jong 2024-11-03 14:38:24 +01:00
parent 1496bfaac0
commit 41e47c9648

View file

@ -126,7 +126,7 @@ This is free software, and you are welcome to redistribute it under certain cond
type=str, type=str,
default=None, default=None,
required=False, required=False,
help="Forget given snapshot", help="Forget given snapshot (accepts comma separated list of snapshots)",
) )
parser.add_argument( parser.add_argument(
"--policy", "--policy",
@ -614,7 +614,7 @@ This is free software, and you are welcome to redistribute it under certain cond
cli_args["op_args"] = {"path": args.find} cli_args["op_args"] = {"path": args.find}
elif args.forget: elif args.forget:
cli_args["operation"] = "forget" cli_args["operation"] = "forget"
cli_args["op_args"] = {"snapshots": args.forget} cli_args["op_args"] = {"snapshots": [snapshot.split() for snapshot in args.forget.split(',')]}
elif args.policy or args.group_operation == "policy": elif args.policy or args.group_operation == "policy":
cli_args["operation"] = "forget" cli_args["operation"] = "forget"
cli_args["op_args"] = {"use_policy": True} cli_args["op_args"] = {"use_policy": True}