Fix ZFS create

This was failing due to the createparent variable being referenced but
never actually loaded from properties
pull/18777/head
Matt Carroll 9 years ago committed by Matt Clay
parent d9a29f394f
commit 164e1f3baa

@ -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:

Loading…
Cancel
Save