mirror of
https://github.com/apache/druid.git
synced 2025-02-13 13:34:58 +00:00
* Add status command to launch scripts * make druid init script to pick up config directories from environment variables make druid init script to pick up config directories from environment variables
11 lines
143 B
Bash
11 lines
143 B
Bash
#!/bin/bash -eu
|
|
|
|
usage="Usage: overlord.sh (start|stop|status)"
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo $usage
|
|
exit 1
|
|
fi
|
|
|
|
sh ./bin/node.sh overlord $1
|