mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Try to ensure the entire value is quoted
This commit is contained in:
parent
8f9bef9d51
commit
0ca1775bda
1 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ class Task(object):
|
||||||
if tokens[0] in [ 'set', 'unset' ]:
|
if tokens[0] in [ 'set', 'unset' ]:
|
||||||
if len(tokens) != 2:
|
if len(tokens) != 2:
|
||||||
raise errors.AnsibleError("usage: when: <set|unset> <$variableName>")
|
raise errors.AnsibleError("usage: when: <set|unset> <$variableName>")
|
||||||
return "is_%s('%s')" % (tokens[0], tokens[1])
|
return "is_%s('''%s''')" % (tokens[0], tokens[1])
|
||||||
|
|
||||||
# when_integer / when_float / when_string
|
# when_integer / when_float / when_string
|
||||||
elif tokens[0] in [ 'integer', 'float', 'string' ]:
|
elif tokens[0] in [ 'integer', 'float', 'string' ]:
|
||||||
|
@ -223,7 +223,7 @@ class Task(object):
|
||||||
for (i,t) in enumerate(tokens[1:]):
|
for (i,t) in enumerate(tokens[1:]):
|
||||||
if t.find("$") != -1:
|
if t.find("$") != -1:
|
||||||
# final variable substitution will happen in Runner code
|
# final variable substitution will happen in Runner code
|
||||||
tcopy[i] = "%s('%s')" % (cast, t)
|
tcopy[i] = "%s('''%s''')" % (cast, t)
|
||||||
else:
|
else:
|
||||||
tcopy[i] = t
|
tcopy[i] = t
|
||||||
return " ".join(tcopy)
|
return " ".join(tcopy)
|
||||||
|
|
Loading…
Reference in a new issue