#!/bin/sh
###############################################################################
# $Header: eusm.sbs 02-feb-2007.03:23:58 swkannan Exp $
#
# Copyright (c) 2006, 2007, Oracle. All rights reserved.  
#
#  NAME
#    eusm.sbs - Shell script for EUS admin tool (command line)
#
#  DESCRIPTION
#    <short description of directory changes this template file performs>
#
#  OID VERSION DEPENDENCY
#    The instantiated version of this template file will only work with OID versions 
#    <version#, e.g. 2.0.5> and above.
#
#  SUBSTITUTION VARIABLES
#    %s_VarName%: <Variable description>
#
#  NOTES
#    <useful information about this file>
#
#  REVISION HISTORY
#  MODIFIED   (MM/DD/YY)
#  swkannan    02/02/07 - Changing ojdbc14 to ojdbc5
#  nmanappa    04/21/06 - Moving from LDAP_CLIENTMAIN to RDBMS_MAIN
#  srtata      05/25/04 - srtata_13248_esmapi
#  srtata      05/10/04 - Creation
#
###############################################################################
# Unset any existing JAVA_HOME variable to ensure that only
# the JRE we want to use is used.
unset JAVA_HOME

# External Directory Variables set by the Installer
JRE_HOME=%s_jreLocation%
RDBMSJLIBDIR=%ORACLE_HOME%/rdbms/jlib
JDBCLIBDIR=%ORACLE_HOME%/jdbc/lib

$JRE_HOME/bin/java -classpath $JRE_HOME/lib/rt.jar:$JDBCLIBDIR/ojdbc5.jar:$RDBMSJLIBDIR/eusm.jar oracle.security.eus.util.ESMdriver "$@"


###############################################################################
## End of file eusm.sbs
###############################################################################

