Bug 499718
Summary: | virtinst incorrectly guesses os variant from F11Preview .treeinfo | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Aron Griffis <aron.griffis> |
Component: | python-virtinst | Assignee: | Cole Robinson <crobinso> |
Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 11 | CC: | berrange, crobinso, markmc, virt-maint |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | 0.400.3-10.fc11 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2009-10-07 03:10:56 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 480594 |
Description
Aron Griffis
2009-05-07 19:05:57 UTC
Appears I can work around the bug with --os-type=linux --os-variant=fedora10 but then I run into bug 499711 .treeinfo: [general] family = Fedora timestamp = 1240506055.63 variant = Fedora totaldiscs = 1 version = 11-Preview discnum = 1 packagedir = arch = x86_64 Here's the code in question: if ret: ver = self.treeinfo.get("general", "version") if ver == "development": self.os_variant = self._latestFedoraVariant() elif ver: self.os_variant = "fedora" + str(ver) i.e. we're doing "fedora" + "11-Preview" Fixed here: http://hg.et.redhat.com/cgi-bin/hg-virt.cgi/applications/virtinst--devel/rev/9768e52d4d62 Hopefully future proofing it: http://hg.et.redhat.com/cgi-bin/hg-virt.cgi/applications/virtinst--devel/rev/db997572bdc8 Also, Aron, you can just use --os-variant fedora11 to work around it. This bug appears to have been reported against 'rawhide' during the Fedora 11 development cycle. Changing version to '11'. More information and reason for this action is here: http://fedoraproject.org/wiki/BugZappers/HouseKeeping This is fixed upstream, moving to POST. python-virtinst-0.400.3-10.fc11 has been submitted as an update for Fedora 11. http://admin.fedoraproject.org/updates/python-virtinst-0.400.3-10.fc11 python-virtinst-0.400.3-4.fc10 has been submitted as an update for Fedora 10. http://admin.fedoraproject.org/updates/python-virtinst-0.400.3-4.fc10 python-virtinst-0.400.3-4.fc10 has been pushed to the Fedora 10 stable repository. If problems still persist, please make note of it in this bug report. python-virtinst-0.400.3-10.fc11 has been pushed to the Fedora 11 stable repository. If problems still persist, please make note of it in this bug report. |