From 3827dc03d8ff2bef2c07ef915eec7cc41953edfd Mon Sep 17 00:00:00 2001 From: Anant Patil Date: Thu, 3 Jul 2014 21:38:16 +0530 Subject: [PATCH] Fixed tunnel ranges variable inconsistency. Change-Id: I7108a3ebd597e1dc808917be9213457df2322100 --- lib/neutron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/neutron b/lib/neutron index 2c6f53b0e2..73694d1d1c 100644 --- a/lib/neutron +++ b/lib/neutron @@ -161,7 +161,7 @@ ENABLE_TENANT_TUNNELS=${ENABLE_TENANT_TUNNELS:-False} # If using GRE tunnels for tenant networks, specify the range of # tunnel IDs from which tenant networks are allocated. Can be # overriden in ``localrc`` in necesssary. -TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGE:-1:1000} +TENANT_TUNNEL_RANGES=${TENANT_TUNNEL_RANGES:-1:1000} # To use VLANs for tenant networks, set to True in localrc. VLANs # are supported by the openvswitch and linuxbridge plugins, each