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.