Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Description of problem:
The example at the end of the fstab-decode manpage is incorrect; the awk command given is displayed without the double quotes and will not work.
Version-Release number of selected component (if applicable):
initscripts-9.03.4-1.el6.x86_64
How reproducible:
always
Steps to Reproduce:
1. man fstab-decode | col -b | grep awk
2.
3.
Actual results:
fstab-decode umount $(awk ’$3 == vfat { print $2 }’ /etc/fstab)
Expected results:
fstab-decode umount $(awk '$3 == "vfat" { print $2 }' /etc/fstab)
Additional info:
patch to fix:
--- fstab-decode.8 2010-02-15 13:45:50.000000000 -0500
+++ fstab-decode-new.8 2010-04-27 13:16:29.082087759 -0400
@@ -42,4 +42,5 @@
.SH EXAMPLES
-.B fstab-decode umount $(awk '$3 == "vfat" { print $2 }' /etc/fstab)
+.B
+fstab-decode umount $(awk '$3 == "vfat" { print $2 }' /etc/fstab)
Fixed in git, will show up in a later build. Thanks!
Comment 4RHEL Program Management
2010-04-27 19:03:11 UTC
This request was evaluated by Red Hat Product Management for inclusion in a Red
Hat Enterprise Linux major release. Product Management has requested further
review of this request by Red Hat Engineering, for potential inclusion in a Red
Hat Enterprise Linux Major release. This request is not yet committed for
inclusion.
Comment 5Fedora Update System
2010-04-28 19:03:01 UTC
Comment 7Fedora Update System
2010-05-04 23:53:46 UTC
initscripts-9.11-1.fc13 has been pushed to the Fedora 13 stable repository. If problems still persist, please make note of it in this bug report.
Comment 9Fedora Update System
2010-05-22 01:47:33 UTC
initscripts-9.02.2-1 has been pushed to the Fedora 12 stable repository. If problems still persist, please make note of it in this bug report.
Comment 11releng-rhel@redhat.com
2010-11-10 20:40:13 UTC
Red Hat Enterprise Linux 6.0 is now available and should resolve
the problem described in this bug report. This report is therefore being closed
with a resolution of CURRENTRELEASE. You may reopen this bug report if the
solution does not work for you.
Description of problem: The example at the end of the fstab-decode manpage is incorrect; the awk command given is displayed without the double quotes and will not work. Version-Release number of selected component (if applicable): initscripts-9.03.4-1.el6.x86_64 How reproducible: always Steps to Reproduce: 1. man fstab-decode | col -b | grep awk 2. 3. Actual results: fstab-decode umount $(awk ’$3 == vfat { print $2 }’ /etc/fstab) Expected results: fstab-decode umount $(awk '$3 == "vfat" { print $2 }' /etc/fstab) Additional info: patch to fix: --- fstab-decode.8 2010-02-15 13:45:50.000000000 -0500 +++ fstab-decode-new.8 2010-04-27 13:16:29.082087759 -0400 @@ -42,4 +42,5 @@ .SH EXAMPLES -.B fstab-decode umount $(awk '$3 == "vfat" { print $2 }' /etc/fstab) +.B +fstab-decode umount $(awk '$3 == "vfat" { print $2 }' /etc/fstab)