diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-03-17 13:01:20 +0100 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-03-17 14:37:35 +0100 |
commit | 323a286e142616486d94769dd78a87bd984ac853 (patch) | |
tree | 483fa261eea65fad6d65895716c1144ff8d36293 | |
parent | 8def6a0610c289f9b944eab87095d47437ba3807 (diff) | |
download | runit-void-323a286e142616486d94769dd78a87bd984ac853.tar.gz runit-void-323a286e142616486d94769dd78a87bd984ac853.tar.xz runit-void-323a286e142616486d94769dd78a87bd984ac853.zip |
3: spawn a subshell to create random-seed
-rwxr-xr-x | 3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3 b/3 index 92cfa83..5a0394a 100755 --- a/3 +++ b/3 @@ -19,7 +19,7 @@ sv exit /var/service/* [ -x /etc/rc.shutdown ] && /etc/rc.shutdown msg "Saving random seed...\n" -dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 >/dev/null 2>&1 +( umask 077; dd if=/dev/urandom of=/var/lib/random-seed count=1 bs=512 >/dev/null 2>&1 ) if [ -z "$VIRTUALIZATION" -a -n "$HARDWARECLOCK" ]; then hwclock --systohc ${HARDWARECLOCK:+--$(echo $HARDWARECLOCK |tr A-Z a-z)} |