gluon-setup-mode: start urngd instead of haveged

OpenWRT 19.07 enables urngd by default, so haveged is redundant.
This commit is contained in:
Jan Luebbe 2020-04-22 20:29:10 +02:00 committed by Martin Weinelt
parent 35b4a97cce
commit 6a371d88f0
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +0,0 @@
#!/bin/sh /etc/rc.common
if [ -x /etc/init.d/haveged ] && /etc/init.d/haveged enabled; then
. /etc/init.d/haveged
fi

View File

@ -0,0 +1,5 @@
#!/bin/sh /etc/rc.common
if [ -x /etc/init.d/urngd ] && /etc/init.d/urngd enabled; then
. /etc/init.d/urngd
fi