From b93b74ca021abb6d82a24ea04f760cdfa0e49474 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Thu, 21 Mar 2013 21:25:05 -0400 Subject: [PATCH] Fix FLAT_INTERFACE not working add a missing colon Fiex LP# 1158308 Change-Id: Ia873788fd5dd17be3c2942057168fbfddb32c14f --- lib/nova | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nova b/lib/nova index f0c83157d6..6aa98bcc6c 100644 --- a/lib/nova +++ b/lib/nova @@ -106,7 +106,7 @@ EC2_DMZ_HOST=${EC2_DMZ_HOST:-$SERVICE_HOST} # If you are running on a single node and don't need to access the VMs from # devices other than that node, you can set ``FLAT_INTERFACE=`` # This will stop nova from bridging any interfaces into ``FLAT_NETWORK_BRIDGE``. -FLAT_INTERFACE=${FLAT_INTERFACE-$GUEST_INTERFACE_DEFAULT} +FLAT_INTERFACE=${FLAT_INTERFACE:-$GUEST_INTERFACE_DEFAULT} # ``MULTI_HOST`` is a mode where each compute node runs its own network node. This # allows network operations and routing for a VM to occur on the server that is