Skip to content

Commit 0122233

Browse files
committed
Bump to 2.0.0 release of ES
Add new checksums and default to v2.0.0 of Elasticsearch. RE: sous-chefs#384.
1 parent 94e4f22 commit 0122233

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ download_url.
2424

2525
|Name|Default|Other values|
2626
|----|-------|------------|
27-
|`default['elasticsearch']['version']`|`'2.0.0-rc1'`|[See list](attributes/default.rb).|
27+
|`default['elasticsearch']['version']`|`'2.0.0'`|[See list](attributes/default.rb).|
2828
|`default['elasticsearch']['install_type']`|`:tarball`|`:package`|
2929
|`default['elasticsearch']['download_urls']['debian']`|`'https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-%s.deb'`|`%s` will be replaced with the version attribute above|
3030
|`default['elasticsearch']['download_urls']['rhel']`|`'https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-%s.noarch.rpm'`|`%s` will be replaced with the version attribute above|

attributes/default.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# elasticsearch version & install type
2-
default['elasticsearch']['version'] = '2.0.0-rc1'
2+
default['elasticsearch']['version'] = '2.0.0'
33
default['elasticsearch']['install_type'] = :tarball
44

55
# platform_family keyed download URLs
@@ -33,3 +33,6 @@
3333
default['elasticsearch']['checksums']['2.0.0-rc1']['debian'] = '6ba92f96676932756ff7113f42d8946679e9be2144acece59bd79367568eb712'
3434
default['elasticsearch']['checksums']['2.0.0-rc1']['rhel'] = '4dd4bdd1b4333f221bc5d2a2638bdc89282d57923842ce4c76607497abafb44d'
3535
default['elasticsearch']['checksums']['2.0.0-rc1']['tar'] = 'cfd97bba0c49000a2799fffd359ec351f0ca7ef5f0a8c160920137db6b057784'
36+
default['elasticsearch']['checksums']['2.0.0']['debian'] = 'f846cab2b7e99159650d38767249275c2fd5d3574fe700ef199cd1cb06ef28bf'
37+
default['elasticsearch']['checksums']['2.0.0']['rhel'] = '6bd2d7840447836450d8781fffa9e296dfb257b523598c6e55433850e37feb25'
38+
default['elasticsearch']['checksums']['2.0.0']['tar'] = 'b25f13f615337c2072964fd9fc5c7250f8a2a983b22198daf93548285d5d16df'

test/integration/helpers/serverspec/install_examples.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
shared_examples_for 'elasticsearch install' do |args = {}|
44
dir = args[:dir] || (package? ? '/usr/share/elasticsearch' : '/usr/local')
5-
version = args[:version] || '2.0.0-rc1'
5+
version = args[:version] || '2.0.0'
66

77
expected_user = args[:user] || 'elasticsearch'
88
expected_group = args[:group] || expected_user || 'elasticsearch'

0 commit comments

Comments
 (0)