mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #3127 from bennojoy/devel
bug fix for #3077, environment settings for script
This commit is contained in:
commit
fc2d25eb82
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ class ActionModule(object):
|
|||
prepcmd = 'chmod +x %s' % tmp_src
|
||||
|
||||
# add preparation steps to one ssh roundtrip executing the script
|
||||
module_args = prepcmd + '; ' + tmp_src + ' ' + args
|
||||
env_string = self.runner._compute_environment_string(inject)
|
||||
module_args = prepcmd + '; ' + 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