1
0
Fork 0
haveged/debian/tests/check-service
Daniel Baumann 10d5974907
Adding debian version 1.9.14-2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 13:10:41 +01:00

9 lines
142 B
Bash
Executable file

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