mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Revert "Rejoin args list into a string for run_command when using an unsafe shell"
This reverts commit 4273cb2d8e
.
This commit is contained in:
parent
4273cb2d8e
commit
b1a37dcc08
1 changed files with 1 additions and 3 deletions
|
@ -1009,9 +1009,7 @@ class AnsibleModule(object):
|
||||||
|
|
||||||
shell = False
|
shell = False
|
||||||
if isinstance(args, list):
|
if isinstance(args, list):
|
||||||
if use_unsafe_shell:
|
pass
|
||||||
args = " ".join([pipes.quote(x) for x in args])
|
|
||||||
shell = True
|
|
||||||
elif isinstance(args, basestring) and use_unsafe_shell:
|
elif isinstance(args, basestring) and use_unsafe_shell:
|
||||||
shell = True
|
shell = True
|
||||||
elif isinstance(args, basestring):
|
elif isinstance(args, basestring):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue