python-linux-procfs/tests/scripts/run_tests.sh
2023-07-10 13:13:45 +02:00

22 lines
366 B
Bash

#!/usr/bin/bash
# make sure we have python-linux-procfs installed
if rpm -q --quiet python3-linux-procfs; then
:
else
sudo dnf install -y python3-linux-procfs
if [[ $? != 0 ]]; then
echo "install of python3-linux-procfs failed!"
exit 1
fi
fi
# see if pflags is installed and executable
pflags --help
if [[ $? != 0 ]]; then
exit 2
fi
exit 0