ansible-roles/elasticsearch/tasks/curator.yml
Benoît S. 771c75c1de
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build is passing
all-roles: Dot not use ansible_lsb as it is deprecated
We move from `ansible_lsb.codename` to `ansible_distribution_release`.
2019-07-03 09:41:35 +02:00

24 lines
568 B
YAML

---
- 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 https://packages.elastic.co/curator/5/{{ curator_debian_repository }} stable main"
filename: curator
update_cache: yes
state: present
tags:
- curator
- packages
- name: Curator package is installed
apt:
name: elasticsearch-curator
state: present
tags:
- curator
- packages