1
0
Fork 0
haveged/debian/tests/check-service

10 lines
142 B
Text
Raw Normal View History

#!/bin/sh
if ! systemctl is-active haveged; then
echo "haveged service is not active"
systemctl status haveged
exit 1
fi
exit 0