mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 09:19:51 +00:00
1ef38f45d9
This is intended as a match with standard urngd. They serve same purpose and urngd starts as first with 00. Starting haveged later can create issues if you replace urngd with it. The example problem is if uci-defaults script decides to generate certificate. Haveged can supply entropy but it is started later and to mitigate this urngd would still have to be installed. This means that haveget can't serve as replacement without moving it to match start order of urngd. Signed-off-by: Karel Kočí <karel.koci@nic.cz>
18 lines
362 B
Bash
18 lines
362 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=01
|
|
USE_PROCD=1
|
|
|
|
HAVEGED_THRESHOLD=1024
|
|
HAVEGED_DCACHE=32
|
|
HAVEGED_ICACHE=32
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command /usr/sbin/haveged
|
|
procd_append_param command -F -w $HAVEGED_THRESHOLD -d $HAVEGED_DCACHE -i $HAVEGED_ICACHE -v 1
|
|
procd_set_param stdout 1
|
|
procd_set_param stderr 1
|
|
procd_close_instance
|
|
}
|