10 lines
142 B
Text
10 lines
142 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if ! systemctl is-active haveged; then
|
||
|
echo "haveged service is not active"
|
||
|
systemctl status haveged
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
exit 0
|