2015-09-14 10:32:20 +02:00
|
|
|
---
|
2015-12-24 13:21:18 +00:00
|
|
|
|
2016-03-21 13:21:35 +00:00
|
|
|
- file: path=/etc/elasticsearch/templates state=directory owner={{ es_user }} group={{ es_group }}
|
|
|
|
|
|
|
|
|
|
- name: Copy default templates to elasticsearch
|
|
|
|
|
copy: src=templates dest=/etc/elasticsearch/ owner={{ es_user }} group={{ es_group }}
|
2016-07-24 01:10:07 +01:00
|
|
|
notify: load-templates
|
2016-03-21 13:21:35 +00:00
|
|
|
when: es_templates_fileglob is not defined
|
|
|
|
|
|
2015-09-14 10:32:20 +02:00
|
|
|
- name: Copy templates to elasticsearch
|
2016-03-31 10:51:21 +03:00
|
|
|
copy: src={{ item }} dest=/etc/elasticsearch/templates owner={{ es_user }} group={{ es_group }}
|
2016-07-20 12:47:34 +01:00
|
|
|
when: es_templates_fileglob is defined
|
2016-07-24 01:10:07 +01:00
|
|
|
notify: load-templates
|
2016-07-20 12:47:34 +01:00
|
|
|
with_fileglob:
|
2016-07-24 01:10:07 +01:00
|
|
|
- "{{ es_templates_fileglob }}"
|