diff options
author | Cameron Nemo <camerontnorman@gmail.com> | 2018-09-28 11:19:29 -0700 |
---|---|---|
committer | Enno Boland <g@s01.de> | 2019-03-16 18:23:08 +0100 |
commit | 0566391df8c9c93f75ad99d94c8a19abe379908b (patch) | |
tree | ed6e314f549a9723623e3dfc844deb368431324b /3 | |
parent | d8bea125cef59042931b5fe62121b44e9573db49 (diff) | |
download | runit-void-0566391df8c9c93f75ad99d94c8a19abe379908b.tar.gz runit-void-0566391df8c9c93f75ad99d94c8a19abe379908b.tar.xz runit-void-0566391df8c9c93f75ad99d94c8a19abe379908b.zip |
urandom: don't seed/store in containers
Diffstat (limited to '3')
-rwxr-xr-x | 3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/3 b/3 index 42d6c22..20d7c99 100755 --- a/3 +++ b/3 @@ -18,8 +18,10 @@ sv exit /var/service/* [ -x /etc/rc.shutdown ] && /etc/rc.shutdown -msg "Saving random seed..." -( umask 077; bytes=$(cat /proc/sys/kernel/random/poolsize) || bytes=512; dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=$bytes >/dev/null 2>&1 ) +if [ -z "$VIRTUALIZATION" ]; then + msg "Saving random seed..." + ( umask 077; bytes=$(cat /proc/sys/kernel/random/poolsize) || bytes=512; dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=$bytes >/dev/null 2>&1 ) +fi if [ -z "$VIRTUALIZATION" -a -n "$HARDWARECLOCK" ]; then hwclock --systohc ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z)} |