From d97b8bdd338b2f322e5f38cc87a2ec3f03284fd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Tue, 31 Jan 2023 11:16:34 +0100 Subject: [PATCH] Add vhd.gz extension to compressed VHD images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JIRA: RHELCMP-11027 Signed-off-by: Lubomír Sedlář --- pungi/phases/image_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/image_build.py b/pungi/phases/image_build.py index fecaba67..1e5b23e1 100644 --- a/pungi/phases/image_build.py +++ b/pungi/phases/image_build.py @@ -39,7 +39,7 @@ EXTENSIONS = { "vdi": ["vdi"], "vmdk": ["vmdk"], "vpc": ["vhd"], - "vhd-compressed": ["vhd.xz"], + "vhd-compressed": ["vhd.gz", "vhd.xz"], "vsphere-ova": ["vsphere.ova"], }