Skip to content
This repository was archived by the owner on Nov 10, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Default: ```/usr/local/lib```

##### elasticsearch.noOfHwNodes

How many hardware nodes we want to run this cluster on. This prevents multiple nodes from the same cluster to run on a single physical node.
How many hardware nodes we want to run this cluster on. This prevents multiple mesos nodes from running on a single physical node.

Default: ```1```

Expand Down
4 changes: 2 additions & 2 deletions bin/build
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash -x

# Our elasticsearch-mesos project version follows the Elasticsearch version number
PROJVERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\[')
ESVERSION=$(mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=elasticsearch.version | grep -v '\[')
PROJVERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\['`
ESVERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=elasticsearch.version | grep -v '\['`

echo Building Elasticsearch $ESVERSION for Mesos

Expand Down