From ea73597c5d579cdae023d7ca8ee1fd19ac9d3bb5 Mon Sep 17 00:00:00 2001 From: Martin Sehnoutka Date: Thu, 21 Nov 2019 13:29:52 +0100 Subject: [PATCH] use vpc type in call to qemu-img for vhd images vhd images currently use qcow2 format, because osbuild does not support vpc yet, but it should land soon in related PR --- internal/distro/fedora30/vhd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/distro/fedora30/vhd.go b/internal/distro/fedora30/vhd.go index 8837846a4..9f09f5148 100644 --- a/internal/distro/fedora30/vhd.go +++ b/internal/distro/fedora30/vhd.go @@ -29,7 +29,7 @@ func (t *vhdOutput) translate(b *blueprint.Blueprint) (*pipeline.Pipeline, error addF30GRUB2Stage(p, b.GetKernelCustomization()) addF30FixBlsStage(p) addF30SELinuxStage(p) - addF30QemuAssembler(p, "qcow2", t.getName()) + addF30QemuAssembler(p, "vpc", t.getName()) if b.Customizations != nil { err := customizeAll(p, b.Customizations)