For disk import, it should be based on the disk properties that are passed in rather than on those of a possibly pre-existing disk in the config.
Signed-off-by: Fabian Ebner <f.eb...@proxmox.com> --- New in v12. PVE/QemuServer.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index b98ed3d..b246602 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -7703,9 +7703,10 @@ sub qemu_use_old_bios_files { } sub get_efivars_size { - my ($conf) = @_; + my ($conf, $efidisk) = @_; + my $arch = get_vm_arch($conf); - my $efidisk = $conf->{efidisk0} ? parse_drive('efidisk0', $conf->{efidisk0}) : undef; + $efidisk //= $conf->{efidisk0} ? parse_drive('efidisk0', $conf->{efidisk0}) : undef; my $smm = PVE::QemuServer::Machine::machine_type_is_q35($conf); my (undef, $ovmf_vars) = get_ovmf_files($arch, $efidisk, $smm); die "uefi vars image '$ovmf_vars' not found\n" if ! -f $ovmf_vars; -- 2.30.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel