mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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.
This commit is contained in:
parent
7e23ed345f
commit
858004984b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue