Bug 138
| Summary: | Viewing RPM files in mc no longer works | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | bbaetz |
| Component: | mc | Assignee: | David Lawrence <dkl> |
| Status: | CLOSED DUPLICATE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 5.2 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1998-11-20 11:33:07 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: | |||
*** This bug has been marked as a duplicate of 13 *** Commit pushed to master at https://github.com/openshift/openshift-ansible https://github.com/openshift/openshift-ansible/commit/5f4f758e78c65ff7a193c15314ce70118359a7fd Update README.md Fixes issue #138 |
The new version of rpm (rpm-2.5.5-5.2) in RedHat 5.2 breaks the rpm browsing ability of mc. I think this is because rpm -qvl no longer has a separate column for the sticky bit, but instead gives the same output as ls -l. The loss of this column broke the sed script, which looked for either a - or a t. Patch follows: --- /usr/lib/mc/extfs/rpm.orig Thu Nov 19 23:25:40 1998 +++ /usr/lib/mc/extfs/rpm Thu Nov 19 23:29:15 1998 @@ -97,7 +97,7 @@ echo "$FILEPREF 0 $DATE INFO/CHANGELOG" fi - rpm -qlvp $1 | sed -e 's/^\(..........\)[-t] /\1 1 /' + rpm -qlvp $1 | sed -e 's/^\(..........\) /\1 1 /' } mcrpmfs_copyout ()