mirror of https://github.com/apache/druid.git
11 lines
136 B
Bash
11 lines
136 B
Bash
|
#!/bin/bash -eu
|
||
|
|
||
|
usage="Usage: overlord.sh (start|stop)"
|
||
|
|
||
|
if [ $# -lt 1 ]; then
|
||
|
echo $usage
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
sh ./bin/node.sh overlord $1
|