From 3472c2102ce066c29c95fd9466913e559b605823 Mon Sep 17 00:00:00 2001 From: Mimi Zohar Date: Mon, 15 Jan 2024 21:02:47 -0500 Subject: [PATCH] Install file signatures The rpm-plugin-ima package installs the IMA file signatures stored in the RPM package. Prevent installing rpm-plugin-ima on fuse filesystems. Signed-off-by: Mimi Zohar --- ci/fedora.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/fedora.sh b/ci/fedora.sh index 44fd956..55f286d 100755 --- a/ci/fedora.sh +++ b/ci/fedora.sh @@ -17,6 +17,11 @@ esac # ibmswtpm2 requires gcc [ "$CC" = "gcc" ] || CC="gcc $CC" + +if [ ! ${fstype:0:4} == fuse ]; then + yum -y install rpm-plugin-ima || true +fi + yum -y install \ $CC $TSS \ asciidoc \