ansible-roles/elasticsearch/tasks/curator.yml

20 lines
370 B
YAML
Raw Normal View History

2016-11-22 15:30:28 +01:00
---
- name: Curator sources list is available
apt_repository:
repo: "deb http://packages.elastic.co/curator/4/debian stable main"
filename: elastic
update_cache: yes
2016-11-22 15:30:28 +01:00
state: present
tags:
- curator
2016-11-22 15:30:28 +01:00
- packages
- name: Curator package is installed
apt:
name: elasticsearch-curator
state: present
tags:
- curator
- packages