Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Dykstal2006-04-26 14:06:59 +0000
committerDavid Dykstal2006-04-26 14:06:59 +0000
commitfa809ee17b1dca0780bb8863802369bc8f684939 (patch)
tree2a0d760e535a5551089ca85e47f9be59ae9d261a
parent7fdcd75a7ceb159de4f818b982ad4a09be6bf870 (diff)
downloadorg.eclipse.tm-fa809ee17b1dca0780bb8863802369bc8f684939.tar.gz
org.eclipse.tm-fa809ee17b1dca0780bb8863802369bc8f684939.tar.xz
org.eclipse.tm-fa809ee17b1dca0780bb8863802369bc8f684939.zip
updated su options in script
-rw-r--r--rse/plugins/org.eclipse.rse.services.dstore/serverruntime/auth.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/auth.pl b/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/auth.pl
index 6b4f4da56..8ca83ce06 100644
--- a/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/auth.pl
+++ b/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/auth.pl
@@ -31,7 +31,7 @@ else
$passwd=$passwdStruct[1];
$encryptedPWD = crypt($pwdIN, $passwd);
$classpath=$ENV{CLASSPATH};
- $suOptions="-lp";
+ $suOptions="-p";
if ($passwd eq $encryptedPWD)
{
@@ -45,7 +45,7 @@ else
$suOptions="-";
}
- system("su $suOptions $userIN -c 'java -cp $classpath -DA_PLUGIN_PATH=$pathIN org.eclipse.dstore.core.server.Server $portIN $timeoutIN $ticketIN -Xshareclasses:name=RSE,verbose'");
+ system("su $suOptions $userIN -c 'java -cp $classpath -DA_PLUGIN_PATH=$pathIN org.eclipse.dstore.core.server.Server $portIN $timeoutIN $ticketIN'");
1;
}
else

Back to the top