Fix missing space in script action plugin.
This commit is contained in:
parent
ffaf442037
commit
615f70e3f4
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class ActionModule(object):
|
|||
|
||||
# add preparation steps to one ssh roundtrip executing the script
|
||||
env_string = self.runner._compute_environment_string(conn, inject)
|
||||
module_args = env_string + tmp_src + ' ' + args
|
||||
module_args = ' '.join([env_string, tmp_src, args])
|
||||
|
||||
handler = utils.plugins.action_loader.get('raw', self.runner)
|
||||
result = handler.run(conn, tmp, 'raw', module_args, inject)
|
||||
|
|
Loading…
Reference in a new issue