summaryrefslogtreecommitdiff
path: root/virtinst/storage.py
diff options
context:
space:
mode:
authorCharles Arnold <carnold@suse.com>2015-09-29 11:25:34 -0600
committerCole Robinson <crobinso@redhat.com>2015-09-29 16:33:16 -0400
commitf30975c3f8e2c009d778f143633c37c5656207f5 (patch)
tree0d48ae0d557b70df22aba8883751db57997ab98f /virtinst/storage.py
parentb45a0ce2867f2ae4fb28c27c31c49dc30175db7b (diff)
downloadvirt-manager-f30975c3f8e2c009d778f143633c37c5656207f5.tar.gz
storage: remove cow as supported format
Support for this format was removed about a year ago from qemu with this commit, commit 550830f9351291c585c963204ad9127998b1c1ce Author: Stefan Hajnoczi <stefanha@redhat.com> Date: Tue Sep 16 15:24:24 2014 +0100 block: delete cow block driver Signed-off-by: Charles Arnold <carnold@suse.com>
Diffstat (limited to 'virtinst/storage.py')
-rw-r--r--virtinst/storage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/virtinst/storage.py b/virtinst/storage.py
index 24973d3d..e50b78fe 100644
--- a/virtinst/storage.py
+++ b/virtinst/storage.py
@@ -540,7 +540,7 @@ class StorageVolume(_StorageObject):
"""
Base class for building and installing libvirt storage volume xml
"""
- ALL_FORMATS = ["raw", "bochs", "cloop", "cow", "dmg", "iso", "qcow",
+ ALL_FORMATS = ["raw", "bochs", "cloop", "dmg", "iso", "qcow",
"qcow2", "qed", "vmdk", "vpc", "fat", "vhd", "vdi"]
@staticmethod
@@ -741,7 +741,7 @@ class StorageVolume(_StorageObject):
def list_create_formats(self):
if self._supports_format():
- return ["raw", "cow", "qcow", "qcow2", "qed", "vmdk", "vpc", "vdi"]
+ return ["raw", "qcow", "qcow2", "qed", "vmdk", "vpc", "vdi"]
return None