rteval-loads/tests/scripts/run_tests.sh
John Kacur 35824f373d Update to linux-6.12-rc4
Update to linux-6.12-rc4 which contains the patches
  to remove dependency on deprecated <openssl/engine.h>
Resolves: RHEL-63613

Signed-off-by: John Kacur <jkacur@redhat.com>
2024-10-25 10:44:49 -04:00

21 lines
383 B
Bash

#!/usr/bin/bash
# make sure we have rteval installed
if rpm -q --quiet rteval-loads; then
:
else
sudo dnf install -y rteval-loads
if [[ $? != 0 ]]; then
echo "install of rteval failed!"
exit 1
fi
fi
# check that the tarball is in place
if [[ ! -f /usr/share/rteval/loadsource/linux-6.12-rc4.tar.gz ]]; then
echo "No load tarball found!"
exit 3
fi
exit 0