ansible-role-elasticsearch/tasks/main.yml

38 lines
776 B
YAML
Raw Normal View History

2015-05-11 16:51:33 +02:00
---
- name: check-parameters
include: checkParameters.yml
2016-04-26 11:45:11 -07:00
tags:
- check
- name: os-specific vars
include_vars: "{{ansible_os_family}}.yml"
tags:
- always
2015-05-11 16:51:33 +02:00
- include: java.yml
2016-04-26 11:45:11 -07:00
tags:
- java
- include: elasticsearch.yml
2016-04-26 11:45:11 -07:00
tags:
- install
- include: elasticsearch-config.yml
2016-04-26 11:45:11 -07:00
tags:
- config
2015-11-25 17:13:45 +00:00
- include: elasticsearch-scripts.yml
when: es_scripts
2016-04-26 11:45:11 -07:00
tags:
- scripts
- include: elasticsearch-plugins.yml
when: es_plugins is defined or es_plugins_reinstall
2016-04-26 11:45:11 -07:00
tags:
- plugins
2016-07-08 13:32:17 +01:00
- include: elasticsearch-shield.yml
when: es_install_shield
2016-07-08 14:49:21 +01:00
tags:
- shield
- include: elasticsearch-service.yml
2016-04-26 11:45:11 -07:00
tags:
- service
2015-11-25 23:43:01 +00:00
- include: elasticsearch-templates.yml
when: es_templates
2016-04-26 11:45:11 -07:00
tags:
- templates
2016-07-20 13:05:18 +01:00
- meta: flush_handlers