-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce a new CLI tool (scope), rabbitmq-tanzu
For Tanzu (commercial) plugins to attach their commands to instead of polluting rabbitmqctl. Pair: @pjk25 (cherry picked from commit 6e0f243)
- Loading branch information
1 parent
051e504
commit f7d32d6
Showing
21 changed files
with
120 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/sh | ||
## This Source Code Form is subject to the terms of the Mozilla Public | ||
## License, v. 2.0. If a copy of the MPL was not distributed with this | ||
## file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
## | ||
## Copyright (c) 2007-2021 VMware, Inc. or its affiliates. All rights reserved. | ||
## | ||
|
||
# Exit immediately if a pipeline, which may consist of a single simple command, | ||
# a list, or a compound command returns a non-zero status | ||
set -e | ||
|
||
# Each variable or function that is created or modified is given the export | ||
# attribute and marked for export to the environment of subsequent commands. | ||
set -a | ||
|
||
# shellcheck source=/dev/null | ||
# | ||
# TODO: when shellcheck adds support for relative paths, change to | ||
# shellcheck source=./rabbitmq-env | ||
. "${0%/*}"/rabbitmq-env | ||
|
||
run_escript rabbitmqctl_escript "${ESCRIPT_DIR:?must be defined}"/rabbitmq-tanzu "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
@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-2021 VMware, Inc. or its affiliates. All rights reserved. | ||
REM | ||
|
||
REM Scopes the variables to the current batch file | ||
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-tanzu" !STAR! | ||
|
||
if ERRORLEVEL 1 ( | ||
exit /B %ERRORLEVEL% | ||
) | ||
|
||
EXIT /B 0 | ||
|
||
endlocal | ||
endlocal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters