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
This commit is contained in:
t.goto 2017-02-16 13:19:02 +09:00
parent 357fb3e87c
commit 79b4774e68

View File

@ -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']