From 0d357c7273d522c55358dac90d9b1ed06a4f9093 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Thu, 1 Nov 2018 21:37:43 +0000 Subject: [PATCH] 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 --- templates/l3_agent.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/l3_agent.ini.j2 b/templates/l3_agent.ini.j2 index d10df423..d4a12770 100644 --- a/templates/l3_agent.ini.j2 +++ b/templates/l3_agent.ini.j2 @@ -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 %}