Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Brian C. Lane
0d0495d4d6 tests: Set release to 39 instead of rawhide
This gets passed to dnf for use in the $releasever substitution for repo
urls, resulting in it using the wrong repos for the test.
2024-11-25 12:38:00 -08:00
2 changed files with 5 additions and 4 deletions

View file

@ -4,7 +4,7 @@
Name: lorax
Version: 39.5
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Tool for creating the anaconda install images
License: GPL-2.0-or-later
@ -168,6 +168,9 @@ make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
%{_datadir}/lorax/templates.d/*
%changelog
* Mon Nov 25 2024 Brian C. Lane <bcl@redhat.com> - 39.5-2
- tests: Set release to 39 instead of rawhide (bcl)
* Thu Sep 07 2023 Brian C. Lane <bcl@redhat.com> 39.5-1
- Explicitly pull in more filesystem packages (awilliam@redhat.com)
- runtime-postinstall: Turn off lvm monitoring (bcl@redhat.com)

View file

@ -217,8 +217,6 @@ function run_as_user {
umount_dirs
}
# Gather up the list of system repo files and use them for lorax
REPOS=$(for f in /etc/yum.repos.d/*repo; do echo -n "--repo $f "; done)
if [ -z "$REPOS" ]; then
@ -230,7 +228,7 @@ fi
# Run lorax using the host's repository configuration file
if [ ! -e "$BOOTISO" ]; then
running "Build boot.iso with lorax"
lorax --product="Fedora" --version=rawhide --release=rawhide --volid="Fedora-rawhide-test" \
lorax --product="Fedora" --version=39 --release=39 --volid="Fedora-39-test" \
$REPOS --isfinal --nomacboot /var/tmp/lorax-fedora-iso/ || exit 1
fi