mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
shell quoting fixes
(edited author's original commit comment -- MPD)
This commit is contained in:
parent
99d5796605
commit
ec6f488d1f
2 changed files with 11 additions and 4 deletions
|
@ -293,7 +293,7 @@ class PlayBook(object):
|
|||
async_seconds = int(task.get('async', 0)) # not async by default
|
||||
async_poll_interval = int(task.get('poll', 10)) # default poll = 10 seconds
|
||||
|
||||
tokens = shlex.split(action)
|
||||
tokens = shlex.split(action, posix=False)
|
||||
module_name = tokens[0]
|
||||
module_args = tokens[1:]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue