Fix deprecation warning

Bare variables are deprecated in Ansible now, we should wrap them
in jinja stuff so that the deprecation warning goes away.

Change-Id: Ib2bd6ae508eacaa274c16e08fe3ef384e4700776
This commit is contained in:
Monty Taylor 2016-02-25 11:10:50 -06:00
parent fdc43c9f8a
commit af32021ef2
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
src: "{{ item }}"
dest: "{{ item }}"
mode: 0600
with_items: hiera_file_paths.paths|default()
with_items: "{{ hiera_file_paths.paths|default() }}"
when: copy_hieradata