1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

make sure the shebang we inject into the module is a str

Fixes #8564
This commit is contained in:
Toshio Kuratomi 2015-03-26 11:52:19 -07:00
parent e9c8e89c77
commit 5bf9ea6298

View file

@ -26,6 +26,7 @@ from ansible import errors
from ansible import utils
from ansible import constants as C
from ansible import __version__
from asnible.utils.unicode import to_bytes
REPLACER = "#<<INCLUDE_ANSIBLE_MODULE_COMMON>>"
REPLACER_ARGS = "\"<<INCLUDE_ANSIBLE_MODULE_ARGS>>\""
@ -184,7 +185,8 @@ class ModuleReplacer(object):
interpreter_config = 'ansible_%s_interpreter' % os.path.basename(interpreter)
if interpreter_config in inject:
lines[0] = shebang = "#!%s %s" % (inject[interpreter_config], " ".join(args[1:]))
interpreter = to_bytes(inject[interpreter_config], errors='strict')
lines[0] = shebang = "#!%s %s" % (interpreter, " ".join(args[1:]))
module_data = "\n".join(lines)
return (module_data, module_style, shebang)