From 79b4774e68b7f1533ed1156ecd4da9a21e3946fc Mon Sep 17 00:00:00 2001
From: "t.goto" <tomoyan777@gmail.com>
Date: Thu, 16 Feb 2017 13:19:02 +0900
Subject: [PATCH] Fix typo in neutron's default/main.yml file

There is an unnecessary condition operator in neutron's
defaults/main.yml which causes pull error.

- Delete an duplicated "or" from neutron-sfc-agent host_in_groups
 check condition.

Change-Id: I32626ad83fbca9a17cd89b70ff95d58d23b200d2
Closes-Bug: #1665188
---
 ansible/roles/neutron/defaults/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/roles/neutron/defaults/main.yml b/ansible/roles/neutron/defaults/main.yml
index 8060a141e9..9a6a93fc77 100644
--- a/ansible/roles/neutron/defaults/main.yml
+++ b/ansible/roles/neutron/defaults/main.yml
@@ -90,7 +90,7 @@ neutron_services:
     host_in_groups: >-
       {{
       True if orchestration_engine == 'KUBERNETES' else
-      ( inventory_hostname in groups['compute'] or
+      ( inventory_hostname in groups['compute']
       or (enable_manila | bool and inventory_hostname in groups['manila-share'])
       or inventory_hostname in groups['neutron-dhcp-agent']
       or inventory_hostname in groups['neutron-l3-agent']