82 lines
2.4 KiB
Batchfile
82 lines
2.4 KiB
Batchfile
@echo off
|
|
rem -------------------------------------------------------------------------
|
|
rem Add User script for Windows
|
|
rem -------------------------------------------------------------------------
|
|
rem
|
|
rem A simple utility for adding new users to the properties file used
|
|
rem for domain management authentication out of the box.
|
|
|
|
rem $Id$
|
|
|
|
@if not "%ECHO%" == "" echo %ECHO%
|
|
@if "%OS%" == "Windows_NT" setlocal
|
|
|
|
if "%OS%" == "Windows_NT" (
|
|
set "DIRNAME=%~dp0%"
|
|
) else (
|
|
set DIRNAME=.\
|
|
)
|
|
|
|
pushd "%DIRNAME%.."
|
|
set "RESOLVED_JBOSS_HOME=%CD%"
|
|
popd
|
|
|
|
call "%DIRNAME%common.bat" :commonConf
|
|
|
|
if "x%JBOSS_HOME%" == "x" (
|
|
set "JBOSS_HOME=%RESOLVED_JBOSS_HOME%"
|
|
)
|
|
|
|
pushd "%JBOSS_HOME%"
|
|
set "SANITIZED_JBOSS_HOME=%CD%"
|
|
popd
|
|
|
|
if /i "%RESOLVED_JBOSS_HOME%" NEQ "%SANITIZED_JBOSS_HOME%" (
|
|
echo.
|
|
echo WARNING: The JBOSS_HOME ^("%SANITIZED_JBOSS_HOME%"^) that this script uses points to a different installation than the one that this script resides in ^("%RESOLVED_JBOSS_HOME%"^). Unpredictable results may occur.
|
|
echo.
|
|
echo JBOSS_HOME: "%JBOSS_HOME%"
|
|
echo.
|
|
)
|
|
|
|
rem Setup JBoss specific properties
|
|
if "x%JAVA_HOME%" == "x" (
|
|
set JAVA=java
|
|
echo JAVA_HOME is not set. Unexpected results may occur.
|
|
echo Set JAVA_HOME to the directory of your local JDK to avoid this message.
|
|
) else (
|
|
set "JAVA=%JAVA_HOME%\bin\java"
|
|
)
|
|
|
|
rem set default modular jvm parameters
|
|
setlocal EnableDelayedExpansion
|
|
call "!DIRNAME!common.bat" :setDefaultModularJvmOptions "!JAVA_OPTS!"
|
|
set "JAVA_OPTS=!JAVA_OPTS! !DEFAULT_MODULAR_JVM_OPTIONS!"
|
|
setlocal DisableDelayedExpansion
|
|
|
|
rem Find jboss-modules.jar, or we can't continue
|
|
if exist "%JBOSS_HOME%\jboss-modules.jar" (
|
|
set "RUNJAR=%JBOSS_HOME%\jboss-modules.jar"
|
|
) else (
|
|
echo Could not locate "%JBOSS_HOME%\jboss-modules.jar".
|
|
echo Please check that you are in the bin directory when running this script.
|
|
goto END
|
|
)
|
|
|
|
rem Set default module root paths
|
|
if "x%JBOSS_MODULEPATH%" == "x" (
|
|
set "JBOSS_MODULEPATH=%JBOSS_HOME%\modules"
|
|
)
|
|
|
|
rem Uncomment to override standalone and domain user location
|
|
rem set "JAVA_OPTS=%JAVA_OPTS% -Djboss.server.config.user.dir=..\standalone\configuration -Djboss.domain.config.user.dir=..\domain\configuration"
|
|
|
|
"%JAVA%" %JAVA_OPTS% ^
|
|
-jar "%JBOSS_HOME%\jboss-modules.jar" ^
|
|
-mp "%JBOSS_MODULEPATH%" ^
|
|
org.jboss.as.domain-add-user ^
|
|
%*
|
|
|
|
:END
|
|
if "x%NOPAUSE%" == "x" pause
|