_mixed-script.bat revision 2976
2976N/A
2976N/A@echo off
2976N/Arem CDDL HEADER START
2976N/Arem
2976N/Arem The contents of this file are subject to the terms of the
2976N/Arem Common Development and Distribution License, Version 1.0 only
2976N/Arem (the "License"). You may not use this file except in compliance
2976N/Arem with the License.
2976N/Arem
2976N/Arem You can obtain a copy of the license at
2976N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE
2976N/Arem or https://OpenDS.dev.java.net/OpenDS.LICENSE.
2976N/Arem See the License for the specific language governing permissions
2976N/Arem and limitations under the License.
2976N/Arem
2976N/Arem When distributing Covered Code, include this CDDL HEADER in each
2976N/Arem file and include the License file at
2976N/Arem trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
2976N/Arem add the following below this CDDL HEADER, with the fields enclosed
2976N/Arem by brackets "[]" replaced with your own identifying information:
2976N/Arem Portions Copyright [yyyy] [name of copyright owner]
2976N/Arem
2976N/Arem CDDL HEADER END
2976N/Arem
2976N/Arem
2976N/Arem Portions Copyright 2006-2007 Sun Microsystems, Inc.
2976N/A
2976N/Arem This script is used to invoke various server-side processes. It should not
2976N/Arem be invoked directly by end users.
2976N/A
2976N/Asetlocal
2976N/Afor %%i in (%~sf0) do set DIR_HOME=%%~dPsi..
2976N/Aset INSTANCE_ROOT=%DIR_HOME%
2976N/A
2976N/Aif "%OPENDS_INVOKE_CLASS%" == "" goto noInvokeClass
2976N/A
2976N/Aset OLD_SCRIPT_NAME=%SCRIPT_NAME%
2976N/Aset SCRIPT_NAME=%OLD_SCRIPT_NAME%.online
2976N/A
2976N/Aset SCRIPT_UTIL_CMD=set-full-environment
2976N/Acall "%INSTANCE_ROOT%\lib\_script-util.bat"
2976N/Aif NOT %errorlevel% == 0 exit /B %errorlevel%
2976N/A
2976N/Aset SCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=%OLD_SCRIPT_NAME%"
2976N/A
2976N/Arem Check whether is local or remote
2976N/A"%OPENDS_JAVA_BIN%" %OPENDS_JAVA_ARGS% %SCRIPT_NAME_ARG% %OPENDS_INVOKE_CLASS% --configClass org.opends.server.extensions.ConfigFileHandler --configFile "%DIR_HOME%\config\config.ldif" --testIfOffline %*
2976N/Aif %errorlevel% == 51 goto launchoffline
2976N/Aif %errorlevel% == 52 goto launchonline
2976N/Aexit /B %errorlevel%
2976N/A
2976N/A:noInvokeClass
2976N/Aecho Error: OPENDS_INVOKE_CLASS environment variable is not set.
2976N/Apause
2976N/Agoto end
2976N/A
2976N/A:launchonline
2976N/A
2976N/A"%OPENDS_JAVA_BIN%" %OPENDS_JAVA_ARGS% %SCRIPT_NAME_ARG% %OPENDS_INVOKE_CLASS% --configClass org.opends.server.extensions.ConfigFileHandler --configFile "%DIR_HOME%\config\config.ldif" %*
2976N/A
2976N/Agoto end
2976N/A
2976N/A:launchoffline
2976N/Aset SCRIPT_NAME=%OLD_SCRIPT_NAME%.offline
2976N/A
2976N/Aset SCRIPT_UTIL_CMD=set-full-environment
2976N/Acall "%INSTANCE_ROOT%\lib\_script-util.bat"
2976N/Aif NOT %errorlevel% == 0 exit /B %errorlevel%
2976N/Aset SCRIPT_NAME_ARG="-Dorg.opends.server.scriptName=%OLD_SCRIPT_NAME%"
2976N/A
2976N/A"%OPENDS_JAVA_BIN%" %OPENDS_JAVA_ARGS% %SCRIPT_NAME_ARG% %OPENDS_INVOKE_CLASS% --configClass org.opends.server.extensions.ConfigFileHandler --configFile "%DIR_HOME%\config\config.ldif" %*
2976N/A
2976N/Agoto end
2976N/A
2976N/A:end
2976N/A