Removed bare variables

Issue #86
This commit is contained in:
Artem Alexandrov 2016-03-25 11:20:23 +03:00
parent 3c5adf9961
commit 717dd74a9f
2 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@
- name: Copy templates to elasticsearch
copy: src={{ item }} dest=/etc/elasticsearch/ owner={{ es_user }} group={{ es_group }}
with_fileglob: es_templates_fileglob
with_fileglob: "{{ es_templates_fileglob }}"
- set_fact: http_port=9200
@ -24,4 +24,4 @@
- name: Install template(s)
command: "curl -sL -XPUT http://localhost:{{http_port}}/_template/{{item}} -d @/etc/elasticsearch/templates/{{item}}.json"
with_items: resultstemplate.stdout_lines
with_items: "{{ resultstemplate.stdout_lines }}"