mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
Fix some templating issues, needs testing with anti-unicode safeguard around shlex.split
This commit is contained in:
parent
bd7de28a64
commit
b76efa39be
3 changed files with 6 additions and 5 deletions
|
@ -548,6 +548,7 @@ class Runner(object):
|
|||
for (k,v) in self.module_args.iteritems():
|
||||
new_args = new_args + "%s='%s' " % (k,v)
|
||||
self.module_args = new_args
|
||||
self.module_args = utils.template(self.module_args, inject)
|
||||
|
||||
conditional = utils.template(self.conditional, inject)
|
||||
if not eval(conditional):
|
||||
|
@ -586,7 +587,6 @@ class Runner(object):
|
|||
changed = False
|
||||
if result.result.get('changed',False) or result2.result.get('changed',False):
|
||||
changed = True
|
||||
# print "DEBUG=%s" % changed
|
||||
result2.result.update(result.result)
|
||||
result2.result['changed'] = changed
|
||||
result = result2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue