Package: rng-tools5
Version: 5-1
Severity: important

Dear Maintainer,

the daemon doesn't start automatically because there's no init script
included.

I've attached a working example.

Regards,

Carsten

#!/bin/sh
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
    set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides:          rngd
# Required-Start:    $remote_fs $syslog
# Required-Stop:     $remote_fs $syslog
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: entropy gathering daemon (rngd)
# Description:       Check and feed random data from hardware device
#                    to kernel random device

### END INIT INFO

# Author: Carsten Leonhardt <[email protected]>

DESC="entropy gathering daemon"
DAEMON=/usr/sbin/rngd

Reply via email to