mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 14:44:11 +02:00
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> Closes: https://bugs.gentoo.org/484696
14 lines
302 B
Text
14 lines
302 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name='clrngd'
|
|
command='/usr/sbin/clrngd'
|
|
command_args="${clrngd_opts:-${DELAYTIME}}"
|
|
description="Clock entropy for RNG"
|
|
|
|
depend() {
|
|
after random
|
|
before net
|
|
provide entropy
|
|
}
|