From 21ed0c009fc124eae8ed4fbe535865076ff37038 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Wed, 26 Apr 2006 22:14:11 +0000 Subject: [PATCH] Changed names of scripts used when launching servers with REXEC. --- .../subsystems/IBMServerLauncherConstants.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/internal/subsystems/IBMServerLauncherConstants.java b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/internal/subsystems/IBMServerLauncherConstants.java index 13dcc7dda35..9556228245d 100644 --- a/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/internal/subsystems/IBMServerLauncherConstants.java +++ b/rse/plugins/org.eclipse.rse.ui/subsystems/org/eclipse/rse/core/internal/subsystems/IBMServerLauncherConstants.java @@ -16,8 +16,6 @@ package org.eclipse.rse.core.internal.subsystems; -import org.eclipse.rse.core.IRSESystemType; - /** * This interface defines constants for IBM Server Launcher. */ @@ -40,14 +38,14 @@ public interface IBMServerLauncherConstants public static final String DEFAULT_REXEC_PATH = "/opt/rseserver/"; /** - * Linux REXEC script command, "perl ./server.linux". + * Linux REXEC script command, "perl ./server.pl". */ - public static final String LINUX_REXEC_SCRIPT = "perl ./server." + IRSESystemType.SYSTEMTYPE_LINUX.toLowerCase(); + public static final String LINUX_REXEC_SCRIPT = "perl ./server.pl"; /** - * Unix REXEC script command, "./server.unix". + * Unix REXEC script command, "./server.sh". */ - public static final String UNIX_REXEC_SCRIPT = "./server." + IRSESystemType.SYSTEMTYPE_UNIX.toLowerCase(); + public static final String UNIX_REXEC_SCRIPT = "./server.sh"; /** * Default REXEC script command. TIt is equivalent to LINUX_REXEC_SCRIPT.