File tree 4 files changed +18
-3
lines changed
fixtures/cookbooks/elasticsearch_test/recipes
integration/helpers/serverspec
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased] ( https://github.com/elastic/cookbook-elasticsearch/tree/HEAD )
4
4
5
+ ## [ 1.2.0] ( https://github.com/elastic/cookbook-elasticsearch/tree/1.2.0 ) (2015-10-16)
6
+ [ Full Changelog] ( https://github.com/elastic/cookbook-elasticsearch/compare/v1.0.3...1.2.0 )
7
+
8
+ ** Closed issues:**
9
+
10
+ - Compile error w/ 1.0.3 and Chef Server 12 [ \# 379] ( https://github.com/elastic/cookbook-elasticsearch/issues/379 )
11
+ - OS X Support [ \# 358] ( https://github.com/elastic/cookbook-elasticsearch/issues/358 )
12
+ - Dealing with plugin versions that don't match, Elasticsearch failing to start [ \# 330] ( https://github.com/elastic/cookbook-elasticsearch/issues/330 )
13
+ - ruby command not found [ \# 378] ( https://github.com/elastic/cookbook-elasticsearch/issues/378 )
14
+
15
+ ** Merged pull requests:**
16
+
17
+ - Update the README to remove a typo [ \# 381] ( https://github.com/elastic/cookbook-elasticsearch/pull/381 ) ([ jtwarren] ( https://github.com/jtwarren ) )
18
+ - Correct the full changelog links [ \# 375] ( https://github.com/elastic/cookbook-elasticsearch/pull/375 ) ([ eheydrick] ( https://github.com/eheydrick ) )
19
+
5
20
## [ 1.0.3] ( https://github.com/elastic/cookbook-elasticsearch/tree/1.0.3 ) (2015-09-20)
6
21
[ Full Changelog] ( https://github.com/elastic/cookbook-elasticsearch/compare/v1.0.2...v1.0.3 )
7
22
Original file line number Diff line number Diff line change 5
5
license 'Apache 2.0'
6
6
description 'Installs and configures Elasticsearch'
7
7
long_description IO . read ( File . join ( File . dirname ( __FILE__ ) , 'README.md' ) )
8
- version '1.0.3 '
8
+ version '1.2.0 '
9
9
10
10
depends 'apt'
11
11
depends 'yum'
Original file line number Diff line number Diff line change 56
56
elasticsearch_plugin 'mobz/elasticsearch-head' do
57
57
user 'foo'
58
58
group 'bar'
59
- plugin_dir '/usr/local/awesome/elasticsearch-1.7.2 /plugins'
59
+ plugin_dir '/usr/local/awesome/elasticsearch-1.7.3 /plugins'
60
60
end
61
61
62
62
elasticsearch_service 'elasticsearch-crazy' do
Original file line number Diff line number Diff line change 2
2
3
3
shared_examples_for 'elasticsearch install' do |args = { } |
4
4
dir = args [ :dir ] || '/usr/local'
5
- version = args [ :version ] || '1.7.2 '
5
+ version = args [ :version ] || '1.7.3 '
6
6
package_name = args [ :package ] || false
7
7
8
8
expected_user = args [ :user ] || 'elasticsearch'
You can’t perform that action at this time.
0 commit comments