check to see if the OVMF_VARS file actually exists. otherwise lines 3666 and 3673 break and give a cryptic error message
Signed-off-by: Noel Ullreich <[email protected]> --- PVE/QemuServer.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 2a2f1f7..38f3145 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -3640,6 +3640,7 @@ sub config_to_command { my ($ovmf_code, $ovmf_vars) = get_ovmf_files($arch, $d, $q35); die "EFI base image '$ovmf_code' not found\n" if ! -f $ovmf_code; + die "EFI vars image '$ovmf_vars' not found\n" if ! -f $ovmf_vars; my ($path, $format); my $read_only_str = ''; -- 2.30.2 _______________________________________________ pve-devel mailing list [email protected] https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
