aboutsummaryrefslogtreecommitdiff
path: root/utils/rng-tools/files/rngd.uci_defaults
blob: 6a26cf0a1d1db74faef2ed459d4a8dfd1f0a83f5 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

uci -q show system.@rngd[0] || {
	uci add system rngd
	uci set system.@rngd[0].enabled=0
	uci set system.@rngd[0].device=/dev/urandom
	uci commit
}