setup.bat revision 84
871N/A
871N/A@echo off
871N/Arem CDDL HEADER START
871N/Arem
871N/Arem The contents of this file are subject to the terms of the
871N/Arem Common Development and Distribution License, Version 1.0 only
871N/Arem (the "License"). You may not use this file except in compliance
871N/Arem with the License.
871N/Arem
871N/Arem You can obtain a copy of the license at
871N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE
871N/Arem or https://OpenDS.dev.java.net/OpenDS.LICENSE.
871N/Arem See the License for the specific language governing permissions
871N/Arem and limitations under the License.
871N/Arem
871N/Arem When distributing Covered Code, include this CDDL HEADER in each
871N/Arem file and include the License file at
871N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
873N/Arem add the following below this CDDL HEADER, with the fields enclosed
871N/Arem by brackets "[]" replaced with your own identifying * information:
871N/Arem Portions Copyright [yyyy] [name of copyright owner]
871N/Arem
871N/Arem CDDL HEADER END
871N/Arem
5061N/Arem
6211N/Arem Portions Copyright 2006 Sun Microsystems, Inc.
871N/A
3832N/Asetlocal
871N/A
871N/Aset DIR_HOME=%~dP0
2175N/Aset INSTANCE_ROOT=%DIR_HOME%
2175N/A
2175N/Aif "%JAVA_BIN%" == "" goto noJavaBin
871N/Agoto setClassPath
871N/A
871N/A:noJavaBin
3832N/Aif "%JAVA_HOME%" == "" goto noJavaHome
3832N/Aif not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
3832N/Aset JAVA_BIN="%JAVA_HOME%\bin\java.exe"
871N/Agoto setClassPath
3832N/A:noJavaHome
3832N/Aecho Error: JAVA_HOME environment variable is not set.
3832N/Aecho Please set it to a valid Java 5 installation.
871N/Agoto end
871N/A
871N/A
3832N/A:setClassPath
3832N/AFOR %%x in (%DIR_HOME%\lib\*.jar) DO call "%DIR_HOME%\bin\setcp.bat" %%x
3832N/A
927N/Acd %DIR_HOME%
3832N/A
3832N/A%JAVA_BIN% %JAVA_ARGS% -classpath "%CLASSPATH%" org.opends.server.tools.InstallDS --configClass org.opends.server.config.ConfigFileHandler --configFile %DIR_HOME%\config\config.ldif %*
3832N/A
3832N/A
871N/A:end
3832N/A
3832N/A