Skip to content
Snippets Groups Projects
Commit 6a371d88 authored by Jan Luebbe's avatar Jan Luebbe Committed by Martin Weinelt
Browse files

gluon-setup-mode: start urngd instead of haveged

OpenWRT 19.07 enables urngd by default, so haveged is redundant.
parent 35b4a97c
No related branches found
No related tags found
No related merge requests found
#!/bin/sh /etc/rc.common
if [ -x /etc/init.d/haveged ] && /etc/init.d/haveged enabled; then
. /etc/init.d/haveged
fi
#!/bin/sh /etc/rc.common
if [ -x /etc/init.d/urngd ] && /etc/init.d/urngd enabled; then
. /etc/init.d/urngd
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment