From fb9b1a0d5c2e0258a814fb2ba850f14d20c2de51 Mon Sep 17 00:00:00 2001 From: Stanislaw Adaszewski Date: Fri, 24 Apr 2020 17:25:51 +0200 Subject: [PATCH] Fix in image prune --- image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image.py b/image.py index aa10fb3..b3067c9 100644 --- a/image.py +++ b/image.py @@ -112,7 +112,7 @@ def command_image_prune(args): continue if r[3] not in used: print('Removing:', r[3]) - zfs_run(['zfs', 'destroy', '-f', r[3]]) + zfs_run(['zfs', 'destroy', '-r', '-f', r[3]]) again = True # zfs_parse_output(['zfs'])