mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
multiple _interpreter overrides with ansible_<bin>_interpreter variables, not
just for python anymore Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
This commit is contained in:
parent
8ef2807305
commit
2f2bd87b06
1 changed files with 7 additions and 10 deletions
|
@ -545,20 +545,17 @@ class Runner(object):
|
|||
facility = inject['ansible_syslog_facility']
|
||||
module_data = module_data.replace('syslog.LOG_USER', "syslog.%s" % facility)
|
||||
|
||||
# use the correct python interpreter for the host
|
||||
if 'ansible_python_interpreter' in inject:
|
||||
interpreter = inject['ansible_python_interpreter']
|
||||
module_lines = module_data.split('\n')
|
||||
if '#!' and 'python' in module_lines[0]:
|
||||
module_lines[0] = "#!%s" % interpreter
|
||||
module_data = "\n".join(module_lines)
|
||||
|
||||
self._transfer_str(conn, tmp, module_name, module_data)
|
||||
|
||||
lines = module_data.split("\n")
|
||||
shebang = None
|
||||
if lines[0].startswith("#!"):
|
||||
shebang = lines[0]
|
||||
interpreter_config = 'ansible_%s_interpreter' % os.path.basename(shebang)
|
||||
|
||||
if interpreter_config in inject:
|
||||
lines[0] = shebang = "#!%s" % inject[interpreter_config]
|
||||
module_data = "\n".join(lines)
|
||||
|
||||
self._transfer_str(conn, tmp, module_name, module_data)
|
||||
|
||||
return (out_path, is_new_style, shebang)
|
||||
|
||||
|
|
Loading…
Reference in a new issue