Revert "Rejoin args list into a string for run_command when using an unsafe shell"

This reverts commit 4273cb2d8e.
This commit is contained in:
James Cammarata 2014-03-13 14:04:51 -05:00
parent 4273cb2d8e
commit b1a37dcc08

View file

@ -1009,9 +1009,7 @@ class AnsibleModule(object):
shell = False
if isinstance(args, list):
if use_unsafe_shell:
args = " ".join([pipes.quote(x) for x in args])
shell = True
pass
elif isinstance(args, basestring) and use_unsafe_shell:
shell = True
elif isinstance(args, basestring):