mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-13 20:31:24 +00:00
Fix ZFS create
This was failing due to the createparent variable being referenced but never actually loaded from properties
This commit is contained in:
@@ -265,6 +265,7 @@ class Zfs(object):
|
||||
volsize = properties.pop('volsize', None)
|
||||
volblocksize = properties.pop('volblocksize', None)
|
||||
origin = properties.pop('origin', None)
|
||||
createparent = properties.pop('createparent', None)
|
||||
if "@" in self.name:
|
||||
action = 'snapshot'
|
||||
elif origin:
|
||||
|
||||
Reference in New Issue
Block a user