From 7d1bf64c0f7cb8b22049de7c0c0402854771c031 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Wed, 7 Feb 2024 13:18:55 +0100 Subject: [PATCH] Temporarily downgrade to older util-linux --- integration/upstream-tests/test.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/integration/upstream-tests/test.sh b/integration/upstream-tests/test.sh index c904bd0..ca7d087 100755 --- a/integration/upstream-tests/test.sh +++ b/integration/upstream-tests/test.sh @@ -51,6 +51,14 @@ else fi fi +# Temporarily downgrade to older util-linux (because of failing setpriv) +TMPDIR="$(mktemp -d)" +pushd "$TMPDIR" +koji download-build --arch x86_64 --arch noarch util-linux-2.39.3-4.fc40 +dnf downgrade ./*.rpm +popd +rm -rf "$TMPDIR" + # Temporarily build custom initrd with libkmod installed explicitly, as it became # a dlopen() dep # See: https://github.com/systemd/systemd/pull/31131