tests: Do not use fedora.repo for the test build

The tmt systems have a fedora.repo present which is including packages
that are not built for RHEL10 and can cause the test build to fail.

Resolves: RHEL-40022
This commit is contained in:
Brian C. Lane 2024-06-04 11:19:30 -07:00
parent adf1e52b80
commit 6b1dce5f0c

View File

@ -245,7 +245,7 @@ if [ ! -e /usr/share/lorax/templates.d/80-rhel/ ]; then
fi fi
# Gather up the list of system repo files and use them for lorax # Gather up the list of system repo files and use them for lorax
REPOS=$(find /etc/yum.repos.d/ -maxdepth 1 -type f -name '*\.repo' -exec echo -n "--repo {} " \;) REPOS=$(find /etc/yum.repos.d/ -maxdepth 1 -type f -name '*\.repo' ! -name 'fedora.repo' -exec echo -n "--repo {} " \;)
if [ -z "$REPOS" ]; then if [ -z "$REPOS" ]; then
echo "No system repos found" echo "No system repos found"
exit 1 exit 1