diff --git a/elasticsearch/tasks/curator.yml b/elasticsearch/tasks/curator.yml index e2546c7a..c7c44259 100644 --- a/elasticsearch/tasks/curator.yml +++ b/elasticsearch/tasks/curator.yml @@ -1,9 +1,13 @@ --- +- name: Use the correct debian repository + set_fact: + curator_debian_repository: '{% if ansible_distribution_release == "jessie" %}debian{% else %}debian9{% endif %}' + - name: Curator sources list is available apt_repository: - repo: "deb http://packages.elastic.co/curator/4/debian stable main" - filename: elastic + repo: "deb https://packages.elastic.co/curator/5/{{ curator_debian_repository }} stable main" + filename: curator update_cache: yes state: present tags: