Correct conditional in l3_agent.ini template

The conditional was set up to test for there being more than one
l3 agent plugin, when it should have checked for more than zero.

Well spotted by jamesdenton.

Change-Id: I65d061218ed90d0b02252f7b5c45562bcb5854b3
This commit is contained in:
Jonathan Rosser 2018-11-01 21:37:43 +00:00
parent 49643b6754
commit 0d357c7273
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ agent_version = v2
vpn_device_driver = {{ neutron_driver_vpnaas }}
{% endif %}
{% if l3_agent_plugins|length > 1 %}
{% if l3_agent_plugins|length > 0 %}
[AGENT]
extensions = {{ l3_agent_plugins | join(',') }}
{% endif %}