From e9290ad137a733f9cf331e382f4560655f2ce780 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Mon, 17 Mar 2014 21:45:41 +0000 Subject: [PATCH] fixing syntax error in with_items variable --- playbooks/groups/lockbox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/groups/lockbox.yml b/playbooks/groups/lockbox.yml index cb05d2b51f..485cdd1d28 100644 --- a/playbooks/groups/lockbox.yml +++ b/playbooks/groups/lockbox.yml @@ -55,11 +55,11 @@ tasks: - name: create directories for local git repos file: path=/srv/git/{{ item.path }} state=directory owner=root group=root mode=1775 - with_items: {{ gitrepos }} + with_items: "{{ gitrepos }}" - name: initialize git repos command: chdir=/srv/git/{{ item.path }} creates={{ item.path }}/HEAD git init --bare - with_items: {{ gitrepos }} + with_items: "{{ gitrepos }}" - name: create ansible base working directory file: path=/srv/ansible state=directory owner=root group=root mode=1775