2015-07-13 06:31:34 -04:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
rem Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
rem or more contributor license agreements. Licensed under the Elastic License;
|
|
|
|
rem you may not use this file except in compliance with the Elastic License.
|
|
|
|
|
2017-07-29 20:31:52 -04:00
|
|
|
setlocal enabledelayedexpansion
|
|
|
|
|
|
|
|
call "%~dp0..\elasticsearch-env.bat"
|
|
|
|
|
|
|
|
call "%~dp0x-pack-env.bat"
|
|
|
|
|
|
|
|
%JAVA% ^
|
|
|
|
%ES_JAVA_OPTS% ^
|
|
|
|
-Des.path.home="%ES_HOME%" ^
|
|
|
|
-Des.path.conf="%CONF_DIR%" ^
|
|
|
|
-cp "%ES_CLASSPATH%" ^
|
|
|
|
org.elasticsearch.xpack.security.authc.file.tool.UsersTool ^
|
|
|
|
%*
|
|
|
|
|
|
|
|
endlocal
|