From eb03d47fecd3bfc24243da29ee01679b334a08fe Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Fri, 23 Sep 2011 09:22:32 -0700 Subject: Remove AoE, Clean up volume code * Removes Ata Over Ethernet * Adds drivers to libvirt for volumes * Adds initialize_connection and terminate_connection to volume api * Passes connection info back through volume api Change-Id: I1b1626f40bebe8466ab410fb174683293c7c474f --- bin/nova-manage | 5 ++--- bin/nova-spoolsentry | 0 2 files changed, 2 insertions(+), 3 deletions(-) mode change 100644 => 100755 bin/nova-spoolsentry (limited to 'bin') diff --git a/bin/nova-manage b/bin/nova-manage index 8a162028b..acaf05216 100755 --- a/bin/nova-manage +++ b/bin/nova-manage @@ -962,9 +962,8 @@ class VmCommands(object): msg = _('Only KVM and QEmu are supported for now. Sorry!') raise exception.Error(msg) - if (FLAGS.volume_driver != 'nova.volume.driver.AOEDriver' and \ - FLAGS.volume_driver != 'nova.volume.driver.ISCSIDriver'): - msg = _("Support only AOEDriver and ISCSIDriver. Sorry!") + if FLAGS.volume_driver != 'nova.volume.driver.ISCSIDriver': + msg = _("Support only ISCSIDriver. Sorry!") raise exception.Error(msg) rpc.call(ctxt, diff --git a/bin/nova-spoolsentry b/bin/nova-spoolsentry old mode 100644 new mode 100755 -- cgit