2013-11-19 13:10:32 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
[ -x /usr/sbin/haveged ] || exit 0
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
start)
|
2015-10-03 23:29:57 +02:00
|
|
|
printf "Starting haveged: "
|
2013-11-19 13:10:32 +01:00
|
|
|
start-stop-daemon -S -x /usr/sbin/haveged -- -w 1024 -r 0
|
2014-10-26 18:41:43 +01:00
|
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
2013-11-19 13:10:32 +01:00
|
|
|
;;
|
|
|
|
stop)
|
2015-10-03 23:29:57 +02:00
|
|
|
printf "Stopping haveged: "
|
2013-11-19 13:10:32 +01:00
|
|
|
start-stop-daemon -K -x /usr/sbin/haveged
|
2014-10-26 18:41:43 +01:00
|
|
|
[ $? = 0 ] && echo "OK" || echo "FAIL"
|
2013-11-19 13:10:32 +01:00
|
|
|
;;
|
|
|
|
restart|reload)
|
|
|
|
$0 stop
|
|
|
|
$0 start
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|