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.

Bug 2073842

Summary: mtools missing glibc-gconv-extra dependency
Product: Red Hat Enterprise Linux 8 Reporter: Yaakov Selkowitz <yselkowi>
Component: mtoolsAssignee: Pavel Cahyna <pcahyna>
Status: CLOSED CURRENTRELEASE QA Contact: Evgeny Fedin <efedin>
Severity: urgent Docs Contact:
Priority: urgent    
Version: 8.6CC: efedin, fkrska, fweimer, jdelft, ovasik, pcahyna, rpittau
Target Milestone: rcKeywords: Regression, Triaged, ZStream
Target Release: ---Flags: rpittau: needinfo-
pm-rhel: mirror+
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: No Doc Update
Doc Text:
Story Points: ---
Clone Of:
: 2073843 2080999 (view as bug list) Environment:
Last Closed: 2023-06-16 09:48:09 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:
Bug Depends On: 2073843    
Bug Blocks: 2080999    

Description Yaakov Selkowitz 2022-04-10 19:46:24 UTC
In RHEL 8.6 and 9.0, less commonly used gconv modules have been split out into a separate glibc-gconv-extra package, to which glibc has only a weak dependency (bug 2015768) meaning that cannot be assumed to be present, particularly in containers.

However, mtools used codepage 850 by default, which is among the codesets that were split out:

https://www.gnu.org/software/mtools/manual/mtools.html#miscellaneous-variables

OCP ironic-image uses mtools in a container:

https://github.com/openshift/ironic-image/blob/master/prepare-efi.sh

Since OCP 4.11 just switched to building off of 8.6 Beta, this has caused a regression in building this image:

 + mmd -i /tmp/esp.img EFI
Error converting to codepage 850 Invalid argument
Cannot initialize '::' 

https://prow.ci.openshift.org/view/gs/origin-ci-test/pr-logs/pull/openshift_ironic-image/263/pull-ci-openshift-ironic-image-master-images/1513233658540986368

Fedora mtools now makes this dependency explicit so that mtools works out of the box:

https://src.fedoraproject.org/rpms/mtools/blob/rawhide/f/mtools.spec#_14

RHEL mtools now needs to do the same.