blob: 015fc59561753b0935ac9f91fb5afaf159ed9d09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/openrc-run
command="/usr/sbin/haveged"
command_args="$HAVEGED_OPTS"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
depend() {
need localmount
after urandom
provide entropy
}
|