Skip to content

Commit

Permalink
Bump to version 2.3.2 as default for cookbook
Browse files Browse the repository at this point in the history
Use ES version 2.3.2 as the default for this cookbook now.

Fixes #459.
  • Loading branch information
martinb3 committed May 6, 2016
1 parent ca0ae61 commit 4601e83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ the version parameter as a string into your download_url.

|Name|Default|Other values|
|----|-------|------------|
|`default['elasticsearch']['version']`|`'2.2.0'`|[See list](attributes/default.rb).|
|`default['elasticsearch']['version']`|`'2.3.2'`|[See list](attributes/default.rb).|
|`default['elasticsearch']['install_type']`|`:package`|`:tarball`|
|`default['elasticsearch']['download_urls']['debian']`|[See values](attributes/default.rb).|`%s` will be replaced with the version attribute above|
|`default['elasticsearch']['download_urls']['rhel']`|[See values](attributes/default.rb).|`%s` will be replaced with the version attribute above|
Expand Down
2 changes: 1 addition & 1 deletion attributes/default.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# elasticsearch version & install type
default['elasticsearch']['version'] = '2.2.0'
default['elasticsearch']['version'] = '2.3.2'
default['elasticsearch']['install_type'] = :package

# platform_family keyed download URLs
Expand Down
2 changes: 1 addition & 1 deletion test/integration/helpers/serverspec/install_examples.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

shared_examples_for 'elasticsearch install' do |args = {}|
dir = args[:dir] || (package? ? '/usr/share/elasticsearch' : '/usr/local')
version = args[:version] || '2.2.0'
version = args[:version] || '2.3.2'

expected_user = args[:user] || 'elasticsearch'
expected_group = args[:group] || expected_user || 'elasticsearch'
Expand Down

0 comments on commit 4601e83

Please sign in to comment.