mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 23:48:20 +00:00
22 lines
456 B
Groff
22 lines
456 B
Groff
#!/sbin/openrc-run
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
: ${HOST:=localhost}
|
|
: ${PORT:=8888}
|
|
: ${RECONNECTINTERVAL:=10}
|
|
: ${BLOCKS:=2}
|
|
|
|
description="EntropyKey EGD client"
|
|
|
|
pidfile=/var/run/$SVCNAME.pid
|
|
|
|
command=/usr/libexec/ekey-egd-linux
|
|
command_args="-H ${HOST} -p ${PORT} -r ${RECONNECTINTERVAL} -b ${BLOCKS} -D ${pidfile}"
|
|
|
|
depend() {
|
|
use net
|
|
after ekeyd
|
|
|
|
provide entropy
|
|
}
|