This repository was archived by the owner on Jun 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ provisioner:
21
21
extra_vars :
22
22
es_major_version : " <%= ENV['VERSION'] % >"
23
23
<% if ENV['VERSION'] == '5.x' % >
24
- es_version : ' 5.6.10 '
24
+ es_version : ' 5.6.11 '
25
25
<% end % >
26
26
<% end % >
27
27
Original file line number Diff line number Diff line change
1
+ ## 6.4.0 - 2018/08/24
2
+
3
+ ### Features
4
+
5
+ * 6.4.0 as default Elasticsearch version
6
+
7
+ ### Fixes
8
+
9
+ * [ #484 ] ( https://github.com/elastic/ansible-elasticsearch/pull/484 ) - @kimoto - Fix downgrading Elasticsearch on RedHat hosts
10
+ * [ #476 ] ( https://github.com/elastic/ansible-elasticsearch/pull/476 ) - @Crazybus - Fix version locking for the elasticsearch-oss package
11
+
1
12
2
13
## 6.3.1 - 2018/07/05
3
14
4
- ## Features
15
+ ### Features
5
16
6
- * 6.3.1 as default elasticsearch version
17
+ * 6.3.1 as default Elasticsearch version
7
18
8
19
## 6.3.0.1 - 2018/06/28
9
20
Original file line number Diff line number Diff line change 1
1
---
2
2
es_major_version : " 6.x"
3
- es_version : " 6.3.1 "
3
+ es_version : " 6.4.0 "
4
4
es_use_snapshot_release : false
5
5
es_enable_xpack : true
6
6
es_package_name : " elasticsearch"
Original file line number Diff line number Diff line change 13
13
set_fact : list_command="| grep -vE 'x-pack'"
14
14
when : not es_plugins_reinstall
15
15
16
+ - name : remove x-pack plugin directory when it isn't a plugin
17
+ file :
18
+ dest : " {{ es_home }}/plugins/x-pack"
19
+ state : " absent"
20
+ when : es_open_xpack
21
+
16
22
# List currently installed plugins. We have to list the directories as the list commmand fails if the ES version is different than the plugin version.
17
23
- name : Check installed elasticsearch plugins
18
24
become : yes
You can’t perform that action at this time.
0 commit comments