From 6f58b12d46cfbbba28b3eadf82b91d27bcea6856 Mon Sep 17 00:00:00 2001
From: Eduardo Gonzalez <dabarren@gmail.com>
Date: Tue, 20 Sep 2016 17:34:28 +0200
Subject: [PATCH] Fix tempest missing spaces

Apply a clear syntax adding missing spaces

TrivialFix
Change-Id: I4046ffc43d58db0b667e661aec83714bc67d8dbb
---
 ansible/roles/tempest/tasks/do_reconfigure.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/ansible/roles/tempest/tasks/do_reconfigure.yml b/ansible/roles/tempest/tasks/do_reconfigure.yml
index 8e8deff53..0aeab552f 100644
--- a/ansible/roles/tempest/tasks/do_reconfigure.yml
+++ b/ansible/roles/tempest/tasks/do_reconfigure.yml
@@ -7,7 +7,7 @@
   failed_when: container_state.Running == false
   when: inventory_hostname in groups[item.group]
   with_items:
-    - { name: tempest, group: tempest}
+    - { name: tempest, group: tempest }
 
 - include: config.yml
 
@@ -18,7 +18,7 @@
   register: check_results
   when: inventory_hostname in groups[item.group]
   with_items:
-    - { name: tempest, group: tempest}
+    - { name: tempest, group: tempest }
 
 # NOTE(jeffrey4l): when config_strategy == 'COPY_ALWAYS'
 # and container env['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE',
@@ -30,7 +30,7 @@
   register: container_envs
   when: inventory_hostname in groups[item.group]
   with_items:
-    - { name: tempest, group: tempest}
+    - { name: tempest, group: tempest }
 
 - name: Remove the containers
   kolla_docker:
@@ -42,7 +42,7 @@
     - item[2]['rc'] == 1
     - inventory_hostname in groups[item[0]['group']]
   with_together:
-    - [{ name: tempest, group: tempest}]
+    - [{ name: tempest, group: tempest }]
     - "{{ container_envs.results }}"
     - "{{ check_results.results }}"
 
@@ -59,6 +59,6 @@
     - item[2]['rc'] == 1
     - inventory_hostname in groups[item[0]['group']]
   with_together:
-    - [{ name: tempest, group: tempest}]
+    - [{ name: tempest, group: tempest }]
     - "{{ container_envs.results }}"
     - "{{ check_results.results }}"
-- 
GitLab