22 lines
366 B
Bash
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
|