From 61ffec7cef23de615d9d94f90daaa218a26e6272 Mon Sep 17 00:00:00 2001 From: Tim Flink Date: Wed, 6 May 2015 20:33:17 +0000 Subject: [PATCH] fixing ansible syntax errors --- roles/beaker/virthost/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/beaker/virthost/tasks/main.yml b/roles/beaker/virthost/tasks/main.yml index c1807c963e..ed89a80a85 100644 --- a/roles/beaker/virthost/tasks/main.yml +++ b/roles/beaker/virthost/tasks/main.yml @@ -21,8 +21,8 @@ template: src: client-libvirt.xml.j2 dest: /root/{{ item }}.libvirt.xml - vmhostname: {{ clients[item]['hostname'] }} - vmmacaddress: {{ clients[item]['macaddress'] }} + vmhostname: "{{ clients[item]['hostname'] }}" + vmmacaddress: "{{ clients[item]['macaddress'] }}" with_items: - "virt02" - "virt03"