From 1494f203ce24043da7d5eeebcfd48fe98ee0d02d Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Wed, 6 Mar 2024 16:39:17 -0500 Subject: [PATCH] image_build: Accept Kiwi extension for Azure VHD images Kiwi builds for Azure fixed VHD images are suffixed with "vhdfixed" instead of plain "vhd". Add that to the list of suffixes. Signed-off-by: Jeremy Cline --- 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 e1efba32..c5b98606 100644 --- a/pungi/phases/image_build.py +++ b/pungi/phases/image_build.py @@ -39,7 +39,7 @@ EXTENSIONS = { "vagrant-vmware-fusion": ["vagrant-vmware-fusion.box"], "vdi": ["vdi"], "vmdk": ["vmdk"], - "vpc": ["vhd"], + "vpc": ["vhd", "vhdfixed"], "vhd-compressed": ["vhd.gz", "vhd.xz"], "vsphere-ova": ["vsphere.ova"], }