Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit 02ba788

Browse files
committed
Fix detection of Fedora distros for latest F8 style trees
1 parent 50eeda8 commit 02ba788

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

virtinst/DistroManager.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ def acquireBootDisk(self, fetcher, progresscb):
210210
# Fedora distro check
211211
class FedoraImageStore(RedHatImageStore):
212212
def isValidStore(self, fetcher, progresscb):
213+
if fetcher.hasFile("fedora.css", progresscb):
214+
logging.debug("Detected a Fedora distro")
215+
return True
213216
if fetcher.hasFile("Fedora", progresscb):
214217
logging.debug("Detected a Fedora distro")
215218
return True

0 commit comments

Comments
 (0)