From 810f5e0716de1b40d91dc14a94a06c68dec8e405 Mon Sep 17 00:00:00 2001 From: "Ramón M. Gómez" Date: Wed, 4 Mar 2020 16:23:03 +0100 Subject: #962: OGAgent runs each script line independently to solve a Python for Windows problem. --- .../Clients/ogagent/src/opengnsys/modules/server/OpenGnSys/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/Sources/Clients/ogagent/src/opengnsys/modules/server/OpenGnSys/__init__.py b/admin/Sources/Clients/ogagent/src/opengnsys/modules/server/OpenGnSys/__init__.py index 24d69ee4..d9ea7438 100644 --- a/admin/Sources/Clients/ogagent/src/opengnsys/modules/server/OpenGnSys/__init__.py +++ b/admin/Sources/Clients/ogagent/src/opengnsys/modules/server/OpenGnSys/__init__.py @@ -282,7 +282,8 @@ class OpenGnSysWorker(ServerWorker): logger.debug('Processing script request') # Decoding script script = urllib.unquote(post_params.get('script').decode('base64')).decode('utf8') - script = 'import subprocess; subprocess.check_output("""{}""",shell=True)'.format(script) + script = 'import subprocess;' +\ + ';'.join(['subprocess.check_output({},shell=True)'.format(c) for c in script.split('\n')]) # Executing script. if post_params.get('client', 'false') == 'false': thr = ScriptExecutorThread(script) -- cgit v1.2.3-18-g5258