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 <[email protected]> Authored: Wed Feb 6 14:03:33 2013 +0100 Committer: Wido den Hollander <[email protected]> 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) {
