From af32021ef25065a64ad733a1c51f9daec05c6e61 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 25 Feb 2016 11:10:50 -0600 Subject: [PATCH] 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 --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 2c00eab..1ef292f 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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