summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMark McLoughlin <markmc@redhat.com>2011-09-11 12:57:05 +0000
committerTarmac <>2011-09-11 12:57:05 +0000
commite587fc09545eebe71b9d3bd9ed5d7fe62424a8a6 (patch)
tree7da386f4794fb2c15c0b254990c2beeafe7fea30 /bin
parent1a5a93d40aba591f715413fbc02e3233da1a7b91 (diff)
parentc173b6bef17d8efe64b43664cc39d81a1c31f3b8 (diff)
downloadnova-e587fc09545eebe71b9d3bd9ed5d7fe62424a8a6.tar.gz
nova-e587fc09545eebe71b9d3bd9ed5d7fe62424a8a6.tar.xz
nova-e587fc09545eebe71b9d3bd9ed5d7fe62424a8a6.zip
Do not require --bridge_interface for FlatDHCPManager (lp:844944)
Unlike VlanManager, FlatDHCPManager actually works fine without a bridge interface on single host deployments.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/nova-manage3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/nova-manage b/bin/nova-manage
index bc191b2f0..089b2eeae 100755
--- a/bin/nova-manage
+++ b/bin/nova-manage
@@ -724,8 +724,7 @@ class NetworkCommands(object):
bridge_interface = bridge_interface or FLAGS.flat_interface or \
FLAGS.vlan_interface
if not bridge_interface:
- interface_required = ['nova.network.manager.FlatDHCPManager',
- 'nova.network.manager.VlanManager']
+ interface_required = ['nova.network.manager.VlanManager']
if FLAGS.network_manager in interface_required:
raise exception.NetworkNotCreated(req='--bridge_interface')