druid/examples/bin/middleManager.sh
Nishant 94b3c74cdc Druid launch script improvements (#3175)
* 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
2016-06-24 15:02:34 -07:00

11 lines
153 B
Bash

#!/bin/bash -eu
usage="Usage: middleManager.sh (start|stop|status)"
if [ $# -lt 1 ]; then
echo $usage
exit 1
fi
sh ./bin/node.sh middleManager $1