Don't process shell commands as arrays.

This commit is contained in:
Michael DeHaan 2014-03-12 11:57:28 -04:00
parent 86d2ee4b97
commit 6d841d120e

View file

@ -1019,6 +1019,7 @@ class AnsibleModule(object):
self.fail_json(rc=257, cmd=args, msg=msg)
# expand things like $HOME and ~
if not shell:
args = [ os.path.expandvars(os.path.expanduser(x)) for x in args ]
rc = 0