Don't recursively snapshot ZFS datasets, since we're not mounting them recursively (#261).
All checks were successful
build / test (push) Successful in 4m9s
build / docs (push) Successful in 56s

This commit is contained in:
Dan Helfman 2024-11-23 22:37:46 -08:00
parent 8de7094691
commit b45b62cd38

View File

@ -91,7 +91,6 @@ def snapshot_dataset(zfs_command, full_snapshot_name): # pragma: no cover
(
zfs_command,
'snapshot',
'-r',
full_snapshot_name,
),
output_log_level=logging.DEBUG,
@ -202,7 +201,6 @@ def destroy_snapshot(zfs_command, full_snapshot_name): # pragma: no cover
(
zfs_command,
'destroy',
'-r',
full_snapshot_name,
),
output_log_level=logging.DEBUG,