salt.module.zpool - fix bug with properties on/off being parsed as true/false

This commit is contained in:
Jorge Schrauwen 2016-07-21 00:28:23 +02:00
parent dd64494a19
commit a5a98845c7

View File

@ -671,6 +671,9 @@ def create(zpool, *vdevs, **kwargs):
if properties: # create "-o property=value" pairs
optlist = []
for prop in properties:
if isinstance(properties[prop], bool):
value = 'on' if properties[prop] else 'off'
else:
if ' ' in properties[prop]:
value = "'{0}'".format(properties[prop])
else: