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:
parent
357fb3e87c
commit
79b4774e68
@ -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']
|
||||
|
Loading…
Reference in New Issue
Block a user