#!/usr/bin/qsh
#
# //  DESCRIPTION:
# //      Script file used to remove all references to a node.

. $(/usr/bin/dirname $0)/setupCmdLine

if [ -z "$JAASSOAP" ]; then
  JAASSOAP="-Djaassoap=off"
fi

${JAVA_HOME}/bin/java ${JAVA_PARM} \
  ${JAASSOAP} \
  -Djava.util.logging.manager=com.ibm.ws.bootstrap.WsLogManager \
  -Djava.util.logging.configureByServer=true \
  com.ibm.wsspi.bootstrap.WSPreLauncher -nosplash -application \
  com.ibm.ws.bootstrap.WSLauncher \
  com.ibm.ws.admin.services.NodeCleanupUtility \
    ${CONFIG_ROOT} ${WAS_CELL} "$@"

