rngd.uci_defaults 159 B

12345678
  1. #!/bin/sh
  2. uci -q show system.@rngd[0] || {
  3. uci add system rngd
  4. uci set system.@rngd[0].enabled=0
  5. uci set system.@rngd[0].device=/dev/urandom
  6. uci commit
  7. }