Bug 450826
Summary: | yum fails to uninstall kernel-xen | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Guido Ledermann <guido.ledermann> |
Component: | yum | Assignee: | Seth Vidal <skvidal> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 9 | CC: | ffesti, james.antill, jhutar, katzj, pmatilai, tim.lauridsen |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | noarch | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | yum-3.2.17-1.fc9 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2008-07-22 15:04:39 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: |
Description
Guido Ledermann
2008-06-11 08:54:33 UTC
This is very suspicious as python shouldn't be generating these messages ... but can you try this patch (added upstream, the file is /usr/share/yum-cli/cli.py): diff --git a/cli.py b/cli.py index ff24ac6..cb16e76 100644 --- a/cli.py +++ b/cli.py @@ -45,7 +45,7 @@ from yum.rpmtrans import RPMTransaction import signal import yumcommands -from yum.misc import to_unicode +from yum.misc import to_unicode, to_utf8 def sigquit(signum, frame): """ SIGQUIT handler for the yum cli. """ @@ -374,7 +374,7 @@ class YumBaseCli(yum.YumBase, output.YumOutput): if msgs: print _('ERROR with rpm_check_debug vs depsolve:') for msg in msgs: - print msg + print to_utf8(msg) return 1, [_('Please report this error in bugzilla')] I applied the patch manually because I get a "malformed" error. The error message still comes up. What locale are you running in? /etc/sysconfig/i18n says LANG="de_DE.utf8" I don't know what's changed in the meanwhile, but I could successfully remove the kernel now. yum-3.2.17-1.fc9 has been submitted as an update for Fedora 9 yum-3.2.17-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'. You can provide feedback for this update here: http://admin.fedoraproject.org/updates/F9/FEDORA-2008-6301 I was able to siccesfully install and remove kernel-xen with new yum-3.2.17-1.fc9: # LANG="de_DE.utf8" yum remove kernel-xen According the comment #5 you do not have this problem now right? (In reply to comment #8) > According the comment #5 you do not have this problem now right? I have no more problems with yum-3.2.17-1.fc9. I did a yum install kernel-xen and yum remove kernel-xen without any problem. yum-3.2.17-2.fc8 has been submitted as an update for Fedora 8 yum-3.2.17-2.fc9 has been pushed to the Fedora 9 stable repository. If problems still persist, please make note of it in this bug report. yum-3.2.18-1.fc8 has been submitted as an update for Fedora 8 yum-3.2.19-1.fc8 has been submitted as an update for Fedora 8. http://admin.fedoraproject.org/updates/yum-3.2.19-1.fc8 yum-3.2.19-3.fc8 has been pushed to the Fedora 8 stable repository. If problems still persist, please make note of it in this bug report. |