summaryrefslogtreecommitdiffstats
path: root/nova/compute
diff options
context:
space:
mode:
authorSalvatore Orlando <salvatore.orlando@eu.citrix.com>2011-11-07 12:01:11 +0000
committerSalvatore Orlando <salvatore.orlando@eu.citrix.com>2012-01-10 17:16:31 +0000
commiteac7888e722759b7c9a0d7841dfe8b26dfd77897 (patch)
tree0bc9df758e65dd2d6d0710c9465237af1407fe49 /nova/compute
parent799801f856a0f3e7788e89ecdca02828fd64e6ad (diff)
Blueprint xenapi-security-groups
Provides two drivers for implementing security groups in xenapi: 1) domU driver that enforces security groups on the Openstack virtual appliance (use advised with FlatDHCP in HA mode) 2) dom0 driver that enforces security groups where VIFs are attached Both drivers translate security groups into iptables rules. Existing libvirt code has been refactored to reduce the amount of duplicated code to a minimum Now Addressing reviewers's comments on style. Fixing issue spotted with snapshots Change-Id: Ifa16a8f2508a709be03241bac0f942fe1a51d1e8
Diffstat (limited to 'nova/compute')
-rw-r--r--nova/compute/manager.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index 108debb93..d8559df1c 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -165,7 +165,6 @@ class ComputeManager(manager.SchedulerDependentManager):
# and re-document the module docstring
if not compute_driver:
compute_driver = FLAGS.compute_driver
-
try:
self.driver = utils.check_isinstance(
utils.import_object(compute_driver),