481N/A
481N/A@echo off
481N/Arem CDDL HEADER START
481N/Arem
481N/Arem The contents of this file are subject to the terms of the
481N/Arem Common Development and Distribution License, Version 1.0 only
481N/Arem (the "License"). You may not use this file except in compliance
481N/Arem with the License.
481N/Arem
6983N/Arem You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
6983N/Arem or http://forgerock.org/license/CDDLv1.0.html.
481N/Arem See the License for the specific language governing permissions
481N/Arem and limitations under the License.
481N/Arem
481N/Arem When distributing Covered Code, include this CDDL HEADER in each
6983N/Arem file and include the License file at legal-notices/CDDLv1_0.txt.
6983N/Arem If applicable, add the following below this CDDL HEADER, with the
6983N/Arem fields enclosed by brackets "[]" replaced with your own identifying
6983N/Arem information:
481N/Arem Portions Copyright [yyyy] [name of copyright owner]
481N/Arem
481N/Arem CDDL HEADER END
481N/Arem
481N/Arem
5236N/Arem Copyright 2006-2010 Sun Microsystems, Inc.
5728N/Arem Portions Copyright 2011-2012 ForgeRock AS
481N/A
481N/Arem This script is used to invoke various server-side processes. It should not
481N/Arem be invoked directly by end users.
481N/A
481N/Asetlocal
1920N/Afor %%i in (%~sf0) do set DIR_HOME=%%~dPsi..
3824N/Aset INSTALL_ROOT=%DIR_HOME%
3824N/A
3824N/Aset INSTANCE_DIR=
6606N/Aif exist "%INSTALL_ROOT%\instance.loc" (
6606N/A set /p INSTANCE_DIR=<%INSTALL_ROOT%\instance.loc
6606N/A) else (
6606N/Aset INSTANCE_DIR=.
3824N/A)
5728N/Aset CUR_DIR=%CD%
3824N/Acd %INSTALL_ROOT%
3824N/Acd %INSTANCE_DIR%
3824N/Aset INSTANCE_ROOT=%CD%
3824N/Acd %CUR_DIR%
481N/A
5636N/Aif "%OPENDJ_INVOKE_CLASS%" == "" goto noInvokeClass
2976N/Agoto launchCommand
481N/A
481N/A:noInvokeClass
5636N/Aecho Error: OPENDJ_INVOKE_CLASS environment variable is not set.
1304N/Apause
481N/Agoto end
481N/A
2976N/A:launchCommand
2976N/Aset SCRIPT_UTIL_CMD=set-full-environment
5173N/Acall "%INSTALL_ROOT%\lib\_script-util.bat" %*
2976N/Aif NOT %errorlevel% == 0 exit /B %errorlevel%
2650N/A
5636N/A"%OPENDJ_JAVA_BIN%" %OPENDJ_JAVA_ARGS% %SCRIPT_ARGS% %SCRIPT_NAME_ARG% %OPENDJ_INVOKE_CLASS% --configClass org.opends.server.extensions.ConfigFileHandler --configFile "%INSTANCE_ROOT%\config\config.ldif" %*
481N/A
481N/A:end
481N/A