elastic / ansible-elasticsearch

Ansible playbook for Elasticsearch
Other
1.59k stars 857 forks source link

elasticsearch-Debian.yml is not working for install ELK 7+ versions without using repository #758

Closed rubarclk closed 3 years ago

rubarclk commented 3 years ago

-I wanted to download elasticsearch 7.10.2 version without using repository, the url used in the code block below is missing;

- name: Debian - Download elasticsearch from url
  **get_url: url={% if es_custom_package_url is defined %}{{ es_custom_package_url }}{% else %}{{ es_package_url }}-{{ es_version }}.deb{% endif %} dest=/tmp/elasticsearch-{{ es_version }}.deb validate_certs=no**
  when: not es_use_repository
- name: Debian - Download elasticsearch from url
  get_url: url={% if es_custom_package_url is defined %}{{ es_custom_package_url }}{% else %}{{ es_package_url }}-{{ es_version }}-amd64.deb{% endif %} dest=/tmp/elasticsearch-{{ es_version }}.deb validate_certs=no
  when: not es_use_repository
jmlrt commented 3 years ago

Hi @rubarclk, Thanks for reporting this issue. Do you think you could provide a PR to fix it?

jmlrt commented 3 years ago

fixed by #761