Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fmf: Explicitly install iptables-nft for Fedora 41 as well #1883

Merged
merged 1 commit into from
Oct 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions test/browser/browser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ cd "${0%/*}/../.."
# HACK: ensure that critical components are up to date: https://github.com/psss/tmt/issues/682
dnf update -y podman crun conmon criu

# Missing iptables-nft dependency https://issues.redhat.com/browse/RHEL-58240
if grep -q 'platform:el10' /etc/os-release; then
# Missing iptables-nft dependency https://issues.redhat.com/browse/RHEL-58240 and
# https://bugzilla.redhat.com/show_bug.cgi?id=2319310
if grep -Eq 'platform:(el10|f41)' /etc/os-release; then
dnf install -y iptables-nft
fi

Expand Down