Bug 891940
| Summary: | Cannot uninstall munin-node due to preun assumptions | ||
|---|---|---|---|
| Product: | [Fedora] Fedora EPEL | Reporter: | Jay Fougere <rhbugzilla> |
| Component: | munin | Assignee: | Kevin Fenzi <kevin> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | el6 | CC: | drjohnson1, ingvar, kevin |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2013-01-20 03:03:36 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: | |
| Embargoed: | |||
There is similar logic in the preun for munin-cgi as well. munin-2.0.10-1.el5 has been submitted as an update for Fedora EPEL 5. https://admin.fedoraproject.org/updates/munin-2.0.10-1.el5 munin-2.0.10-1.el6 has been submitted as an update for Fedora EPEL 6. https://admin.fedoraproject.org/updates/munin-2.0.10-1.el6 munin-2.0.10-1.fc16 has been submitted as an update for Fedora 16. https://admin.fedoraproject.org/updates/munin-2.0.10-1.fc16 munin-2.0.10-1.fc17 has been submitted as an update for Fedora 17. https://admin.fedoraproject.org/updates/munin-2.0.10-1.fc17 munin-2.0.10-1.fc18 has been submitted as an update for Fedora 18. https://admin.fedoraproject.org/updates/munin-2.0.10-1.fc18 Package munin-2.0.10-1.fc18: * should fix your issue, * was pushed to the Fedora 18 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing munin-2.0.10-1.fc18' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/FEDORA-2013-0593/munin-2.0.10-1.fc18 then log in and leave karma (feedback). munin-2.0.10-1.fc18 has been pushed to the Fedora 18 stable repository. If problems still persist, please make note of it in this bug report. munin-2.0.10-1.el5 has been pushed to the Fedora EPEL 5 stable repository. If problems still persist, please make note of it in this bug report. munin-2.0.10-1.fc16 has been pushed to the Fedora 16 stable repository. If problems still persist, please make note of it in this bug report. munin-2.0.10-1.fc17 has been pushed to the Fedora 17 stable repository. If problems still persist, please make note of it in this bug report. munin-2.0.10-1.el6 has been pushed to the Fedora EPEL 6 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: "Error in PREUN scriptlet in rpm package munin-node" -- Cannot uninstall munin-node Version-Release number of selected component (if applicable): 2.0.8 How reproducible: Install munin-node and attempt to uninstall munin-node. Steps to Reproduce: 1. yum install munin-node (pulls in munin-common) 2. yum remove munin-node (fails) 3. rpm -e munin-node (fails) Actual results: munin-node cannot be uninstalled Expected results: successful uninstallation of munin-node Additional info: In the .spec file for munin, it is assumed that there are services installed that are not installed. During preun rpm attempts to stop and disable these services and fails. relevant section: Begins on line 445 in .spec: # Older installs use sysvinit / upstart if [ "$1" = 0 ]; then for svc in node asyncd fcgi-html fcgi-graph; do service munin-${svc} stop &>/dev/null || : /sbin/chkconfig --del munin-${svc} done fi