mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
shell quoting fixes
(edited author's original commit comment -- MPD)
This commit is contained in:
committed by
Michael DeHaan
parent
99d5796605
commit
ec6f488d1f
@@ -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:]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user