From a63ee2bff543a4cf7c3bc2386b758b920dca48f9 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Mon, 28 Jul 2025 18:15:45 -0500 Subject: [PATCH] newvm: Use fedora-rawhide OS variant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently, it's not guaranteed that _libosinfo_ always supports even the version of Fedora it's installed on: there's no _fedora42_ in _libosinfo-1.12.0-2.fc42_ 🤦🏻‍♂️. Fortunately, it makes almost no difference what OS variant is selected at install time, and we probably want the latest features anyway. Thus, we can just use _fedora-rawhide_ instead of any particular version and not worry about it. --- newvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newvm.sh b/newvm.sh index c54559d..5b1527f 100755 --- a/newvm.sh +++ b/newvm.sh @@ -182,7 +182,7 @@ set -- \ --extra-args "${extra_args}" \ --disk pool=default,size=${disk_size},cache=none \ --network ${network} \ - --os-variant fedora$(rpm -E %fedora) \ + --os-variant fedora-rawhide \ --console pty,target.type=serial,log.file=/var/log/libvirt/console/${name}.log \ --sound none \ --redirdev none \