6 lines
106 B
Bash
6 lines
106 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo 'HRNGDEVICE=/dev/hwrng' | tee --append /etc/default/rng-tools
|
||
|
|
||
|
systemctl enable rng-tools
|