setup.bat revision 2549
84N/A
84N/A@echo off
84N/Arem CDDL HEADER START
84N/Arem
84N/Arem The contents of this file are subject to the terms of the
84N/Arem Common Development and Distribution License, Version 1.0 only
84N/Arem (the "License"). You may not use this file except in compliance
84N/Arem with the License.
84N/Arem
84N/Arem You can obtain a copy of the license at
84N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE
84N/Arem or https://OpenDS.dev.java.net/OpenDS.LICENSE.
84N/Arem See the License for the specific language governing permissions
84N/Arem and limitations under the License.
84N/Arem
84N/Arem When distributing Covered Code, include this CDDL HEADER in each
84N/Arem file and include the License file at
84N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
84N/Arem add the following below this CDDL HEADER, with the fields enclosed
873N/Arem by brackets "[]" replaced with your own identifying information:
84N/Arem Portions Copyright [yyyy] [name of copyright owner]
84N/Arem
84N/Arem CDDL HEADER END
84N/Arem
84N/Arem
828N/Arem Portions Copyright 2006-2007 Sun Microsystems, Inc.
84N/A
84N/Asetlocal
84N/A
1895N/Arem check that the path does not contain the ^% character which breaks
1895N/Arem the batch files.
1920N/Afor %%i in (%~sf0) do set NON_ESCAPED=%%~dPsi..
1920N/A
1920N/A
1895N/AFOR /F "tokens=1-2* delims=%%" %%1 IN ("%NON_ESCAPED%") DO (
1895N/Aif NOT "%%2" == "" goto invalidPath)
1895N/A
1920N/Afor %%i in (%~sf0) do set DIR_HOME=%%~dPsi.
1920N/A
84N/Aset INSTANCE_ROOT=%DIR_HOME%
84N/A
623N/A:checkJavaBin
84N/Aif "%JAVA_BIN%" == "" goto noJavaBin
84N/Agoto setClassPath
84N/A
1895N/A:invalidPath
1895N/Aecho Error: The current path contains a %% character. OpenDS cannot
1895N/Aecho be installed on a path containing this character.
1895N/Apause
1895N/Agoto end
1895N/A
1895N/A
84N/A:noJavaBin
84N/Aif "%JAVA_HOME%" == "" goto noJavaHome
84N/Aif not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome
619N/Aset JAVA_BIN=%JAVA_HOME%\bin\java.exe
84N/Agoto setClassPath
623N/A
84N/A:noJavaHome
1194N/Aif not exist "%DIR_HOME%\lib\set-java-home.bat" goto noSetJavaHome
1194N/Acall "%DIR_HOME%\lib\set-java-home.bat"
623N/Aset JAVA_BIN=%JAVA_HOME%\bin\java.exe
623N/Agoto setClassPath
623N/A
623N/A:noSetJavaHome
84N/Aecho Error: JAVA_HOME environment variable is not set.
1186N/Aecho Please set it to a valid Java 5 (or later) installation.
1304N/Apause
84N/Agoto end
84N/A
1186N/A:noValidJavaHome
1186N/Aecho ERROR: The detected Java version could not be used. Please set
1186N/Aecho JAVA_HOME to to a valid Java 5 (or later) installation.
1304N/Apause
1186N/Agoto end
84N/A
84N/A:setClassPath
1194N/AFOR %%x in ("%DIR_HOME%\lib\*.jar") DO call "%DIR_HOME%\lib\setcp.bat" %%x
1591N/Aset CLASSPATH=%DIR_HOME%\classes;%CLASSPATH%
84N/A
481N/Aset PATH=%SystemRoot%
84N/A
1186N/Arem Test that the provided JDK is 1.5 compatible.
1186N/A"%JAVA_BIN%" org.opends.server.tools.InstallDS -t > NUL 2>&1
1186N/Aif not %errorlevel% == 0 goto noValidJavaHome
1186N/A
2549N/Aif "%~1" == "" goto callLaunch
2549N/Agoto callJava
2549N/A
2549N/A:callLaunch
2549N/A"%DIR_HOME%\lib\winlauncher.exe" launch "%JAVA_BIN%" %JAVA_ARGS% org.opends.quicksetup.installer.SetupLauncher
2549N/Agoto end
2549N/A
2549N/A:callJava
2549N/A"%JAVA_BIN%" %JAVA_ARGS% org.opends.quicksetup.installer.SetupLauncher %*
1777N/A
1777N/Arem return part
1777N/Aif %errorlevel% == 50 goto version
828N/Agoto end
84N/A
1777N/A:version
1777N/Arem version information was requested. Return code should be 0.
1777N/Aexit /B 0
1777N/A
84N/A:end
84N/A