This commit is contained in:
Spencer Alger
2015-01-05 15:43:47 -07:00
parent 4fc1c91634
commit 3e66652287
9 changed files with 219 additions and 282 deletions

View File

@ -1,26 +0,0 @@
#!/usr/bin/env bash
if [ -z "$2" ]; then
echo "Usage:
From the root of the elasticsearch-js project call:
Start nightly:
./scripts/es.sh start master
Stop 0.90 branch:
./scripts/es.sh stop 0.90
Start relase version 0.90.7:
./scripts/es.sh start 0.90 0.90.7
"
exit 1
fi
source scripts/_utils.sh
if [[ -z "$ES_NODE_NAME" ]]; then
export ES_NODE_NAME="elasticsearch_js_test_runner"
fi
manage_es $*
exit $?