skip java install on 7.x (java embeded in 7.x version) (#568)
This commit is contained in:
parent
a879b74def
commit
7f5be969e0
2 changed files with 2 additions and 2 deletions
|
|
@ -399,7 +399,7 @@ In addition to es_config, the following parameters allow the customization of th
|
|||
* ```es_action_auto_create_index ``` Sets the value for auto index creation, use the syntax below for specifying indexes (else true/false):
|
||||
es_action_auto_create_index: '[".watches", ".triggered_watches", ".watcher-history-*"]'
|
||||
* ```es_allow_downgrades``` For development purposes only. (true or false (default) )
|
||||
* ```es_java_install``` If set to false, Java will not be installed. (true (default) or false)
|
||||
* ```es_java_install``` If set to true, Java will be installed. (false (default for 7.x) or true (default for 6.x))
|
||||
* ```update_java``` Updates Java to the latest version. (true or false (default))
|
||||
* ```es_max_map_count``` maximum number of VMA (Virtual Memory Areas) a process can own. Defaults to 262144.
|
||||
* ```es_max_open_files``` the maximum file descriptor number that can be opened by this process. Defaults to 65536.
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ es_apt_key: "{{ es_repo_base }}/GPG-KEY-elasticsearch"
|
|||
es_apt_url: "deb {{ es_repo_base }}/packages/{{ es_repo_name }}/apt stable main"
|
||||
es_apt_url_old: "deb http://packages.elastic.co/elasticsearch/{{ es_repo_name }}/debian stable main"
|
||||
es_start_service: true
|
||||
es_java_install: true
|
||||
es_java_install: "{{ false if (es_version is version_compare('7.0.0', '>=')) else true }}"
|
||||
update_java: false
|
||||
es_restart_on_change: true
|
||||
es_plugins_reinstall: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue