From 63553a02fe366f52b81b0672653271e3eb699e61 Mon Sep 17 00:00:00 2001
From: Aimon Bustardo <abustardo@morphlabs.com>
Date: Thu, 8 Nov 2012 16:12:40 -0800
Subject: [PATCH] Remove duplicate statement block

---
 manifests/compute/libvirt.pp | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/manifests/compute/libvirt.pp b/manifests/compute/libvirt.pp
index c99c3f36a..8297cb379 100644
--- a/manifests/compute/libvirt.pp
+++ b/manifests/compute/libvirt.pp
@@ -41,12 +41,4 @@ class nova::compute::libvirt (
     'connection_type':  value => 'libvirt';
     'vncserver_listen': value => $vncserver_listen;
   }
-
-  if $migration_support {
-    if $vncserver_listen != '0.0.0.0' {
-      fail("For migration support to work, you MUST set vncserver_listen to '0.0.0.0'")
-    } else {
-      class { 'nova::migration::libvirt': }
-    }
-  }
 }