Fix missing :

This commit is contained in:
digitalsignalperson 2022-06-13 10:09:32 -07:00 committed by DatuX
parent 3f1696024e
commit a331dab20f

View File

@ -218,7 +218,7 @@ class ZfsNode(ExecuteNode):
# create consistent snapshot per pool
for (pool_name, snapshots) in pools.items():
cmd = ["zfs", "snapshot"]
for snapshot_property in set_snapshot_properties
for snapshot_property in set_snapshot_properties:
cmd += ['-o', snapshot_property]
cmd.extend(map(lambda snapshot_: str(snapshot_), snapshots))