| Summary: | virt-install fails when attempting to install rawhide | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Paul Whalen <pwhalen> |
| Component: | virt-manager | Assignee: | Cole Robinson <crobinso> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | berrange, crobinso, james.hogarth, mfuruta, pbrobinson, virt-maint |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-05-20 21:33:09 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
|
Description
Paul Whalen
2016-03-29 14:45:21 UTC
I got same result with latest Fedora-Server-dvd-x86_64-Rawhide-20160331.n.0.iso
For me, fixed with following patch.
# diff -u /usr/share/virt-manager/virtinst/urlfetcher.py-2016-04-05 /usr/share/virt-manager/virtinst/urlfetcher.py
--- /usr/share/virt-manager/virtinst/urlfetcher.py-2016-04-05 2016-04-05 22:41:42.163174230 +0900
+++ /usr/share/virt-manager/virtinst/urlfetcher.py 2016-04-05 22:46:22.868847565 +0900
@@ -797,7 +797,7 @@
if not ver:
return False
- if ver == "development" or ver == "rawhide":
+ if ver == "development" or ver == "Rawhide":
self._version_number = latestnum
self.os_variant = lateststr
return
virt-manager-common-1.3.2-3.fc25.noarch seems to have this issue too. Thanks for the report, fixed upstream (with a slightly different patch)
commit 97b5961506004b925b7f82fc54666ad341d89fe2
Author: Cole Robinson <crobinso>
Date: Thu Apr 7 17:20:18 2016 -0400
urlfetcher: Fix rawhide URL detection (bz 1322011)
Fixed in virt-manager-1.3.2-4.20160520git2204de62d9.fc25 |