]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
using the new salome command is even better
authorCédric Aguerre <cedric.aguerre@edf.fr>
Fri, 24 Oct 2014 14:35:29 +0000 (16:35 +0200)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Fri, 24 Oct 2014 14:35:29 +0000 (16:35 +0200)
bin/runSession.py

index 5d5f71886c61d3dd55379035fca5cd55827a048a..64c8b6541d6ec70197f93a949963864f02d87c6d 100644 (file)
@@ -244,10 +244,10 @@ def __runRemoteSession(sa_obj, params):
   tmp_in, tmp_out, tmp_script = __copyFiles(params.user, params.machine, script, sa_obj.args or [], sa_obj.out or [])
 
   # execute command on the remote SALOME application
-  command = "ssh %s@%s %s/runSession " % (params.user, params.machine, params.directory)
+  command = "ssh %s@%s %s/salome shell " % (params.user, params.machine, params.directory)
   if params.port:
     command = command + "-p %s "%params.port
-  command = command + " ".join([header,tmp_script] + tmp_in)
+  command = command + " %s %s args:%s"%(header, tmp_script, ",".join(tmp_in))
   print '[  SSH   ] ' + command
   os.system(command)