From 712d6825ed9a5961cde28912e46eb57b8eaf1ebd Mon Sep 17 00:00:00 2001 From: David McKnight Date: Fri, 16 Jun 2006 19:16:19 +0000 Subject: [PATCH] can't pass in user id as a param to script --- .../eclipse/rse/connectorservice/dstore/RexecDstoreServer.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/RexecDstoreServer.java b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/RexecDstoreServer.java index 57e5791ae2c..4f6e71cbc55 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/RexecDstoreServer.java +++ b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/connectorservice/dstore/RexecDstoreServer.java @@ -452,7 +452,8 @@ public class RexecDstoreServer implements IServerLauncher // this should be stored in some resource bundle later //cmd = new String ("echo USSTEST;cd ~/dstore;start_anyport"); //cmd = new String("echo " + ASCII_TEST_STRING + ";cd ~/rseserver;start_anyport"); - cmd = new String("echo " + ASCII_TEST_STRING + ";cd " + this.cwd + ";" + this.invocation + " " + System.getProperty("user.name")); + cmd = new String("echo " + ASCII_TEST_STRING + ";cd " + this.cwd + ";" + this.invocation); + //cmd = new String("echo " + ASCII_TEST_STRING + ";cd " + this.cwd + ";" + this.invocation + " " + System.getProperty("user.name")); logMessage("The command is " + cmd); SystemBasePlugin.logInfo("RexecDstoreServer :");