You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by wi...@apache.org on 2013/02/06 17:51:33 UTC

[2/5] git commit: refs/heads/qemu-img - Add more PhysicalDiskFormat types

Add more PhysicalDiskFormat types


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/96df1355
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/96df1355
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/96df1355

Branch: refs/heads/qemu-img
Commit: 96df1355641d2a65a1b57f5d1a136c513dba1be6
Parents: 5dbaaa8
Author: Wido den Hollander <wi...@widodh.nl>
Authored: Wed Feb 6 14:03:33 2013 +0100
Committer: Wido den Hollander <wi...@widodh.nl>
Committed: Wed Feb 6 14:03:33 2013 +0100

----------------------------------------------------------------------
 utils/src/org/apache/cloudstack/utils/QemuImg.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/96df1355/utils/src/org/apache/cloudstack/utils/QemuImg.java
----------------------------------------------------------------------
diff --git a/utils/src/org/apache/cloudstack/utils/QemuImg.java b/utils/src/org/apache/cloudstack/utils/QemuImg.java
index 991d412..cf406c3 100644
--- a/utils/src/org/apache/cloudstack/utils/QemuImg.java
+++ b/utils/src/org/apache/cloudstack/utils/QemuImg.java
@@ -23,7 +23,7 @@ public class QemuImg {
 
     /* Shouldn't we have KVMPhysicalDisk and LibvirtVMDef read this? */
     public static enum PhysicalDiskFormat {
-        RAW("raw"), QCOW2("qcow2");
+        RAW("raw"), QCOW2("qcow2"), VMDK("vmdk"), FILE("file"), RBD("rbd"), SHEEPDOG("sheepdog"), HTTP("http"), HTTPS("https");
         String format;
 
         private PhysicalDiskFormat(String format) {