mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
Allow unicode transfer by not base64 encoding. Also: faster
This commit is contained in:
parent
227dfc17f3
commit
ce01c3f7e7
4 changed files with 9 additions and 6 deletions
|
@ -188,7 +188,7 @@ class Runner(object):
|
|||
|
||||
afd, afile = tempfile.mkstemp()
|
||||
afo = os.fdopen(afd, 'w')
|
||||
afo.write(data.encode("utf8"))
|
||||
afo.write(data.encode('utf8'))
|
||||
afo.flush()
|
||||
afo.close()
|
||||
|
||||
|
@ -700,7 +700,7 @@ class Runner(object):
|
|||
if module_common.REPLACER in module_data:
|
||||
is_new_style=True
|
||||
module_data = module_data.replace(module_common.REPLACER, module_common.MODULE_COMMON)
|
||||
encoded_args = base64.b64encode(utils.template(self.module_args, inject).encode('utf-8'))
|
||||
encoded_args = "\"\"\"%s\"\"\"" % utils.template(self.module_args, inject).replace("\"","\\\"")
|
||||
module_data = module_data.replace(module_common.REPLACER_ARGS, encoded_args)
|
||||
|
||||
# use the correct python interpreter for the host
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue