Skip to content

Commit

Permalink
Install file signatures
Browse files Browse the repository at this point in the history
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 <zohar@linux.ibm.com>
  • Loading branch information
mimizohar committed May 20, 2024
1 parent 3d59561 commit 529c368
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions ci/fedora.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ esac
# ibmswtpm2 requires gcc
[ "$CC" = "gcc" ] || CC="gcc $CC"


if [ ! ${fstype:0:4} == fuse ]; then
set -x
echo "Installing rpm-plugin-ima"
yum -y install rpm-plugin-ima || true
set +x
else
set -x
echo "Not installing rpm-plugin-ima"
set +x
fi

yum -y install \
$CC $TSS \
asciidoc \
Expand Down

0 comments on commit 529c368

Please sign in to comment.