1
0
mirror of https://git.code.sf.net/p/linux-ima/ima-evm-utils synced 2025-07-01 21:31:14 +02:00

CI/openSUSE: Fix tpm_server symlink creation

This symlink is missing only on openSUSE Tumbleweed,
it exists on openSUSE Leap, thus build failed.

Signed-off-by: Petr Vorel <pvorel@suse.cz>
Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
This commit is contained in:
Petr Vorel
2021-06-22 16:12:23 +02:00
committed by Mimi Zohar
parent 28dd7d4b06
commit 487a078cd3

View File

@ -42,6 +42,6 @@ zypper --non-interactive install --force-resolution --no-recommends \
which \
xsltproc
if [ -f /usr/lib/ibmtss/tpm_server ]; then
if [ -f /usr/lib/ibmtss/tpm_server -a ! -e /usr/local/bin/tpm_server ]; then
ln -s /usr/lib/ibmtss/tpm_server /usr/local/bin
fi