mirror of
https://github.com/apache/druid.git
synced 2025-02-06 10:08:26 +00:00
12 lines
160 B
Bash
12 lines
160 B
Bash
#!/bin/bash -eu
|
|
|
|
usage="Usage: broker.sh (start|stop|status)"
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo $usage
|
|
exit 1
|
|
fi
|
|
|
|
cd $(dirname $0)/../
|
|
sh ./bin/node.sh broker $1
|