From 97d6175943c17b2e501ef9624964e1ec7f552771 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 1 Jan 2014 19:59:25 +0000 Subject: [PATCH] Another loop syntax tweak --- tasks/common_scripts.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/common_scripts.yml b/tasks/common_scripts.yml index dc70a174b6..f2202e7893 100644 --- a/tasks/common_scripts.yml +++ b/tasks/common_scripts.yml @@ -6,6 +6,7 @@ - name: Install common scripts action: copy src={{ item }} dest=/usr/local/bin/ owner=root group=root mode=0755 - with_fileglob: "{{ files }}/common-scripts/*" + with_fileglob: + -"{{ files }}/common-scripts/*" tags: - config