Bug 448062
| Summary: | Pirut crashes after recent yum-* update | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Mary Ellen Foster <mefoster> | ||||
| Component: | yum-utils | Assignee: | Luke Macken <lmacken> | ||||
| Status: | CLOSED NEXTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | high | Docs Contact: | |||||
| Priority: | low | ||||||
| Version: | 8 | CC: | james.antill, jhutar, kmd6076, mcepl, mcepl, petrosyan, pfrields, pmatilai, sysoutfran, tim.lauridsen | ||||
| 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: | 2008-09-09 20:55:36 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: | |||||||
| Attachments: |
|
||||||
Created attachment 306469 [details]
Pirut crash log
Plugin bug. Relevant bit is:
File "/usr/lib/yum-plugins/fastestmirror.py", line 133, in postreposetup_hook
if opts.cacheonly:
AttributeError: 'NoneType' object has no attribute 'cacheonly'
...I'm guessing changing that to:
if hasattr(opts, 'cacheonly') and opts.cacheonly
...will fix it (can you check/confirm mary?).
Fixed in 50e3b20a427335f914fa3e64b96324184cb0001d yum-utils-1.1.14-3.fc8 has been submitted as an update for Fedora 8 yum-utils-1.1.14-3.fc9 has been submitted as an update for Fedora 9 *** Bug 448513 has been marked as a duplicate of this bug. *** *** Bug 448614 has been marked as a duplicate of this bug. *** *** Bug 448092 has been marked as a duplicate of this bug. *** yum-utils-1.1.14-3.fc8 has been pushed to the Fedora 8 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update yum-utils'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F8/FEDORA-2008-4407 Checked that with yum-fastestmirror-1.1.14-1.fc8.noarch.rpm I was getting: # yum upgrade Loading "fastestmirror" plugin Configuration file /etc/yum/pluginconf.d/fastestmirror-asyncore.conf not found Unable to find configuration file for plugin fastestmirror-asyncore Loading mirror speeds from cached hostfile ... and after update to yum-fastestmirror-1.1.14-4.fc8 I have: # yum upgrade Loading "fastestmirror" plugin Loading mirror speeds from cached hostfile ... => VERIFIED yum-utils-1.1.15-1.fc9 has been submitted as an update for Fedora 9 yum-utils-1.1.15-1.fc8 has been submitted as an update for Fedora 8 yum-utils-1.1.15-1.fc8 has been pushed to the Fedora 8 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update yum-utils'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F8/FEDORA-2008-7132 yum-utils-1.1.15-1.fc9 has been pushed to the Fedora 9 testing repository. If problems still persist, please make note of it in this bug report. If you want to test the update, you can install it with su -c 'yum --enablerepo=updates-testing update yum-utils'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F9/FEDORA-2008-7211 Changing to VERIFIED as per comment #11. If the bug has been fixed its status should be changed to CLOSED. VERIFIED means that the bug is still present. yum-utils-1.1.15-1.fc8 has been pushed to the Fedora 8 stable repository. If problems still persist, please make note of it in this bug report. yum-utils-1.1.15-1.fc9 has been pushed to the Fedora 9 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: I did an update this morning which installed new version of yum-utils, yum-skip-broken, and yum-fastestmirror. Since that update, pirut crashes when it tries to run. The dialogue box says "An unhandled exception has occurred. This is most likely a bug. Please save the crash dump and file a detailed bug report against pirut at https://bugzilla.redhat.com/bugzilla" I'll attach the crash dump. Version-Release number of selected component (if applicable): pirut-1.3.28-1.fc8 But I didn't update that today, so I suspect one of the new yum packages: yum-skip-broken-1.1.14-1.fc8 yum-utils-1.1.14-1.fc8 yum-fastestmirror-1.1.14-1.fc8 How reproducible: Every time Steps to Reproduce: 1. Run "pirut" Actual results: Crash Expected results: System update Additional info: "yum update" now prints this at the start of its output: Configuration file /etc/yum/pluginconf.d/fastestmirror-asyncore.conf not found Unable to find configuration file for plugin fastestmirror-asyncore Don't know if that's related.