Syntax fix

Missing quotes
This commit is contained in:
ArseniiPetrovich 2018-05-27 16:12:51 +03:00
parent 7dd405aade
commit a2f8305813
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
copy: src={{ spec_json }} dest={{ home }}/ mode=0644 group={{ username }} owner={{ username }} copy: src={{ spec_json }} dest={{ home }}/ mode=0644 group={{ username }} owner={{ username }}
when: spec_json != "" when: spec_json != ""
with_items: with_items:
- {{ spec_json }} - "{{ spec_json }}"
- {{ bootnodes_txt }} - "{{ bootnodes_txt }}"
- name: Download spec.json and bootnodes.txt - name: Download spec.json and bootnodes.txt
get_url: url={{ item }} dest={{ home }}/ mode=0644 group={{ username }} owner={{ username }} get_url: url={{ item }} dest={{ home }}/ mode=0644 group={{ username }} owner={{ username }}