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/7d1be1be Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/7d1be1be Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/7d1be1be Branch: refs/heads/qemu-img Commit: 7d1be1becb446f064a93228d2ca981a49c738f20 Parents: 986a3c5 Author: Wido den Hollander <[email protected]> Authored: Wed Feb 6 14:03:33 2013 +0100 Committer: Wido den Hollander <[email protected]> Committed: Thu Feb 14 15:01:58 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/7d1be1be/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) {
