2024-03-26 15:59:11 +00:00
|
|
|
#!/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
|
2024-10-25 14:44:49 +00:00
|
|
|
if [[ ! -f /usr/share/rteval/loadsource/linux-6.12-rc4.tar.gz ]]; then
|
2024-03-26 15:59:11 +00:00
|
|
|
echo "No load tarball found!"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit 0
|