#!/usr/bin/qsh
# // THIS PRODUCT CONTAINS RESTRICTED MATERIALS OF IBM
# // 5724-I63, 5724-H88, 5655-N01, 5733-W61 (C) COPYRIGHT International Business Machines Corp., 1997,2006
# // All Rights Reserved * Licensed Materials - Property of IBM
# // US Government Users Restricted Rights - Use, duplication or disclosure
# // restricted by GSA ADP Schedule Contract with IBM Corp.
#
# //  DESCRIPTION:
# //      Script file used to change the JVM sued by this product or a specific profile.
DO_NOT_USE_PROFILE=true
. $(/usr/bin/dirname $0)/setupCmdLine

if (test -f $(/usr/bin/dirname $0)/_setupEnableJvm ) then
   . $(/usr/bin/dirname $0)/_setupEnableJvm 
fi

${JAVA_HOME}/bin/java ${JAVA_PARM} \
  -DKeepProfileName=true \
  com.ibm.wsspi.bootstrap.WSPreLauncher -nosplash -application \
  com.ibm.ws.bootstrap.WSLauncher \
  com.ibm.ws.runtime.EnableJvm "$@"
