ansible-roles/elasticsearch/tasks/curator.yml

19 lines
348 B
YAML

---
- name: Curator sources list is available
apt_repository:
repo: "deb http://packages.elastic.co/curator/4/debian stable main"
update_cache: yes
state: present
tags:
- curator
- packages
- name: Curator package is installed
apt:
name: elasticsearch-curator
state: present
tags:
- curator
- packages