Treat module args as strings everywhere to avoid unneccessary shlex and requoting

This commit is contained in:
Michael DeHaan 2012-03-30 22:47:58 -04:00
parent f11de2f5c9
commit 3ded27fe35
4 changed files with 16 additions and 35 deletions

View file

@ -221,7 +221,7 @@ class PlayBook(object):
while (clock >= 0):
# poll/loop until polling duration complete
runner.module_args = [ "jid=%s" % jid ]
runner.module_args = "jid=%s" % jid
runner.module_name = 'async_status'
runner.background = 0
runner.pattern = '*'