diff options
Diffstat (limited to 'scripts/rabbitmq-plugins.bat')
-rw-r--r-- | scripts/rabbitmq-plugins.bat | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/scripts/rabbitmq-plugins.bat b/scripts/rabbitmq-plugins.bat deleted file mode 100644 index e1f13b7073..0000000000 --- a/scripts/rabbitmq-plugins.bat +++ /dev/null @@ -1,56 +0,0 @@ -@echo off
-
-REM This Source Code Form is subject to the terms of the Mozilla Public
-REM License, v. 2.0. If a copy of the MPL was not distributed with this
-REM file, You can obtain one at https://mozilla.org/MPL/2.0/.
-REM
-REM Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved.
-REM
-
-setlocal
-
-rem Preserve values that might contain exclamation marks before
-rem enabling delayed expansion
-set TDP0=%~dp0
-set STAR=%*
-setlocal enabledelayedexpansion
-
-REM Get default settings with user overrides for (RABBITMQ_)<var_name>
-REM Non-empty defaults should be set in rabbitmq-env
-call "!TDP0!\rabbitmq-env.bat" %~n0
-
-if not exist "!ERLANG_HOME!\bin\erl.exe" (
- echo.
- echo ******************************
- echo ERLANG_HOME not set correctly.
- echo ******************************
- echo.
- echo Please either set ERLANG_HOME to point to your Erlang installation or place the
- echo RabbitMQ server distribution in the Erlang lib folder.
- echo.
- exit /B 1
-)
-
-REM Disable erl_crash.dump by default for control scripts.
-if not defined ERL_CRASH_DUMP_SECONDS (
- set ERL_CRASH_DUMP_SECONDS=0
-)
-
-"!ERLANG_HOME!\bin\erl.exe" +B ^
--boot !CLEAN_BOOT_FILE! ^
--noinput -noshell -hidden -smp enable ^
-!RABBITMQ_CTL_ERL_ARGS! ^
--kernel inet_dist_listen_min !RABBITMQ_CTL_DIST_PORT_MIN! ^
--kernel inet_dist_listen_max !RABBITMQ_CTL_DIST_PORT_MAX! ^
--run escript start ^
--escript main rabbitmqctl_escript ^
--extra "%RABBITMQ_HOME%\escript\rabbitmq-plugins" !STAR!
-
-if ERRORLEVEL 1 (
- exit /B %ERRORLEVEL%
-)
-
-EXIT /B 0
-
-endlocal
-endlocal
|