Commit 85800498 by Nils Pascal Illenseer

Fix zfs create command for properties with spaces

If a property value contains one or more spaces, the zfs command will fail.
With value quoted this behavior is fixed.
parent 7e23ed34
......@@ -264,7 +264,7 @@ class Zfs(object):
cmd.append('-b %s' % volblocksize)
if properties:
for prop, value in properties.iteritems():
cmd.append('-o %s=%s' % (prop, value))
cmd.append('-o %s="%s"' % (prop, value))
if volsize:
cmd.append('-V')
cmd.append(volsize)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment