WIP: 6.3 support
This commit is contained in:
parent
a9f8403ffa
commit
6d82cf3142
17 changed files with 82 additions and 70 deletions
|
|
@ -27,7 +27,12 @@
|
|||
|
||||
- name: Debian - Ensure elasticsearch is installed
|
||||
become: yes
|
||||
apt: name=elasticsearch{% if es_version is defined and es_version != "" %}={{ es_version }}{% endif %} state=present force={{force_install}} allow_unauthenticated={{ 'no' if es_apt_key else 'yes' }} cache_valid_time=86400
|
||||
apt:
|
||||
name: {{ es_package_name }}{% if es_version is defined and es_version != "" %}={{ es_version }}{% endif %}
|
||||
state: present
|
||||
force: {{force_install}}
|
||||
allow_unauthenticated: {{ 'no' if es_apt_key else 'yes' }}
|
||||
cache_valid_time: 86400
|
||||
when: es_use_repository
|
||||
register: debian_elasticsearch_install_from_repo
|
||||
notify: restart elasticsearch
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue