4213d895e0
Lorax doesn't use the variable substitution from the host so hard-code this in the repo files before passing them to lorax. Related: RHEL-44311
24 lines
889 B
Bash
Executable File
24 lines
889 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
|
|
if [ ! -e /usr/share/lorax/templates.d/80-rhel/ ]; then
|
|
echo "Failed to find lorax-templates-rhel templates in /usr/share/lorax/templates.d/"
|
|
exit 1
|
|
fi
|
|
|
|
# Gather up the list of system repo files and use them for lorax
|
|
# Skip fedora.repo
|
|
REPOS=$(find /etc/yum.repos.d/ -maxdepth 1 -type f -name '*\.repo' ! -name 'fedora.repo' -exec echo -n "--repo {} " \;)
|
|
if [ -z "$REPOS" ]; then
|
|
echo "No system repos found"
|
|
exit 1
|
|
fi
|
|
|
|
# The c10s tmt systems have started using $stream in the repo urls as of 6/2024, substitute
|
|
# 10-stream for this variable so that they can be passed to lorax
|
|
sed -i 's/$stream/10-stream/g' /etc/yum.repos.d/*.repo
|
|
|
|
# Run lorax using the host's repository configuration file
|
|
lorax --product="Red Hat Enterprise Linux" --version=10 --release=10 --volid="RHEL-10-test" \
|
|
$REPOS --isfinal --nomacboot /var/tmp/lorax-rhel10-iso/
|