Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'rse/plugins/org.eclipse.rse.services.dstore/serverruntime/scripts/unix/auth.pl')
-rw-r--r--rse/plugins/org.eclipse.rse.services.dstore/serverruntime/scripts/unix/auth.pl77
1 files changed, 0 insertions, 77 deletions
diff --git a/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/scripts/unix/auth.pl b/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/scripts/unix/auth.pl
deleted file mode 100644
index f641c22a4..000000000
--- a/rse/plugins/org.eclipse.rse.services.dstore/serverruntime/scripts/unix/auth.pl
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/usr/bin/perl -w
-#*******************************************************************************
-# Copyright (c) 2005, 2006 IBM Corporation and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# IBM Corporation - initial API and implementation
-#*******************************************************************************
-
-use Shell;
-
-if (!defined($ARGV[0]) || !defined($ARGV[1]) || !defined($ARGV[2]) || !defined($ARGV[3]) || !defined($ARGV[4]))
-{
- print("command usage:\n");
- print("auth.pl USER, PATH, PORT, TIMEOUT, TICKET\n");
-}
-else
-{
- $userIN = $ARGV[0];
- $pathIN = $ARGV[1];
- $portIN = $ARGV[2];
- $timeoutIN = $ARGV[3];
- $ticketIN = $ARGV[4];
-
- if (defined($ARGV[5]))
- {
- $javaHome = $ARGV[5];
- $javaExe = "$javaHome/bin/java";
- }
- else
- {
- $javaExe = "java"
- }
-
- $pwdIN = <STDIN>;
- chomp($pwdIN);
-
-
- @passwdStruct = getpwnam($userIN);
-
- if (@passwdStruct == 0)
- {
- print("invalid user name\n");
- 0;
- }
- else
- {
- $passwd=$passwdStruct[1];
- $encryptedPWD = crypt($pwdIN, $passwd);
- $classpath=$ENV{CLASSPATH};
- $suOptions="-p";
-
- if ($passwd eq $encryptedPWD)
- {
- print("success\n");
-
- $os = uname();
- chomp($os);
-
- if (lc($os) eq "aix")
- {
- $suOptions="-";
- }
-
- system("su $suOptions $userIN -c '$javaExe -cp $classpath -DA_PLUGIN_PATH=$pathIN -DDSTORE_SPIRIT_ON=true org.eclipse.dstore.core.server.Server $portIN $timeoutIN $ticketIN'");
- 1;
- }
- else
- {
- print("incorrect password\n");
- 0;
- }
- }
-}

Back to the top