Navigation Menu

Skip to content

Commit

Permalink
Make ElasticSearch 1.4.4 the version. Fix main default.rb to allow yo…
Browse files Browse the repository at this point in the history
…u to uncomment either elasticsearch::non_util or elasticsearch
  • Loading branch information
rbankston committed Mar 22, 2015
1 parent 69c3343 commit b53de9c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cookbooks/elasticsearch/README.md
Expand Up @@ -9,7 +9,7 @@ So, we build a web site or an application and want to add search to it, and then

[elasticsearch][2] aims to solve all these problems and more. It is an Open Source (Apache 2), Distributed, RESTful, Search Engine built on top of [Lucene][1].

NOTE: This recipe installs Elasticsearch 1.4 and requires Java 7 or later. It will only work on the Gentoo 12.11 stack; the Java 7 ebuild is not available on Gentoo 2009. We do not recommend running older versions of Elasticsearch - versions prior to 1.2 have a remote code execution vulnerability, see http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-3120
NOTE: This recipe installs Elasticsearch 1.4.4 and requires Java 7 or later. It will only work on the Gentoo 12.11 stack; the Java 7 ebuild is not available on Gentoo 2009. We do not recommend running older versions of Elasticsearch - versions prior to 1.2 have a remote code execution vulnerability, see http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2014-3120

Dependencies
--------
Expand Down
4 changes: 2 additions & 2 deletions cookbooks/elasticsearch/attributes/default.rb
@@ -1,5 +1,5 @@
default[:elasticsearch_version] = "1.4.0"
default[:elasticsearch_checksum] = "ffba14b85e4f03f9fbcfb86dc65c4a83390514d1"
default[:elasticsearch_version] = "1.4.4"
default[:elasticsearch_checksum] = "52f40875c7bf5b93252017ce2cd0f779ca2c51fd"
default[:elasticsearch_clustername] = "#{node[:environment][:name]}"
default[:elasticsearch_home] = "/data/elasticsearch"
default[:elasticsearch_s3_gateway_bucket] = "elasticsearch_#{node[:environment][:name]}"
Expand Down
3 changes: 3 additions & 0 deletions cookbooks/main/recipes/default.rb
Expand Up @@ -97,6 +97,9 @@
#uncomment to include the Elasticsearch recipe
#include_recipe "elasticsearch"

#uncomment to include the Elasticsearch recipe on solos and app masters
#include_recipe "elasticsearch::non_util"

# To install specific plugins to Elasticsearch see below as an example
#es_plugin "cloud-aws" do
# action :install
Expand Down

0 comments on commit b53de9c

Please sign in to comment.