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:
redhat-release package creates an empty /etc/yum.repos.d directory during installation.
This breaks DNF's detecting the location of the repository configuration files in case that the --installroot option was used.
E.g. in case of "dnf install --installroot=/the/installroot/ bash":
1. DNF try to use "guest" directory - it looks if path /the/installroot/etc/yum.repos.d exists. If so, it uses this directory as repository configuration path (which is an empty directory in case the redhat-release was installed previously)
2. In case this path does not exist, DNF will use configuration from "host" (/etc/yum.repos.d directory) instead.
That means after installing redhat-release into the install root user is not
able to install any other package because there are not any repositories configured.
Version-Release number of selected component (if applicable):
# rpm -q redhat-release
redhat-release-8.0-0.44.el8.x86_64
How reproducible:
100%
Steps to Reproduce:
# rm -rf /the/installroot
# dnf --releasever=el8 --installroot=/the/installroot install redhat-release
Installed:
redhat-release-8.0-0.44.el8.x86_64
# ls -la /the/installroot/etc/yum.repos.d/
total 0
drwxr-xr-x. 2 root root 6 Mar 5 10:44 .
drwxr-xr-x. 7 root root 188 May 9 07:03 ..
# dnf --releasever=el8 --installroot=/the/installroot install bash
Error: There are no enabled repos.
# rmdir /the/installroot/etc/yum.repos.d
# dnf --releasever=el8 --installroot=/the/installroot install bash
Installed:
bash-4.4.19-7.el8.x86_64
Actual results:
No enabled repos.
Expected results:
Repos from "host" system are available
Additional info:
In subscription-manager's current form, users will still be able to register, attach / remove subscriptions and so on. However, subscription-manager does not create this directory if it does not exist resulting in no access to any content provided in the form of a repo that comes from an entitlement.
As soon as this directory is created (and rhsmcertd runs, or any subman command that reconciles entitlements) the correct redhat.repo file will be generated.
Could dnf be modified to handle the special case of an empty /installroot/etc/yum.repos.d/ directory?
It could treat an empty /installroot/etc/yum.repos.d directory as it does with a nonexistant /installroot/etc/yum.repos.d folder, rely on the host /etc/yum.repos.d directory.
Comment 10RHEL Program Management
2021-02-01 07:40:44 UTC
After evaluating this issue, there are no plans to address it further or fix it in an upcoming release. Therefore, it is being closed. If plans change such that this issue will be fixed in an upcoming release, then the bug can be reopened.