From c2dbbde371fdbb92803f01a99b845808c72ab3de Mon Sep 17 00:00:00 2001
From: Sam Yaple <sam@yaple.net>
Date: Tue, 4 Aug 2015 01:38:34 +0000
Subject: [PATCH] Fixes tags and when conditional for HAProxy

A missing comma after the second tag prevented the when conditional
from being evaluated correctly.

Change-Id: Ic18462212452a22ad556bed114e0a99440abe1ff
Closes-Bug: #1481130
---
 ansible/site.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/site.yml b/ansible/site.yml
index 612d126b5a..e31509aa42 100755
--- a/ansible/site.yml
+++ b/ansible/site.yml
@@ -1,7 +1,7 @@
 ---
 - hosts: haproxy
   roles:
-    - { role: haproxy, tags: haproxy, keepalived when: enable_haproxy | bool }
+    - { role: haproxy, tags: haproxy, keepalived, when: enable_haproxy | bool }
 
 - hosts: mariadb
   roles:
-- 
GitLab