aboutsummaryrefslogtreecommitdiff
path: root/rc.shutdown
diff options
context:
space:
mode:
Diffstat (limited to 'rc.shutdown')
-rwxr-xr-xrc.shutdown11
1 files changed, 10 insertions, 1 deletions
diff --git a/rc.shutdown b/rc.shutdown
index 74347c9..7f79c88 100755
--- a/rc.shutdown
+++ b/rc.shutdown
@@ -51,7 +51,16 @@ stat_busy "Sending SIGKILL To Processes"
stat_done
stat_busy "Saving Random Seed"
-/bin/dd if=/dev/urandom of=/var/run/random-seed count=1 bs=512 2> /dev/null
+RANDOM_SEED=/var/lib/misc/random-seed
+: > $RANDOM_SEED
+/bin/chmod 0600 $RANDOM_SEED
+POOL_FILE=/proc/sys/kernel/random/poolsize
+if [ -r $POOL_FILE ]; then
+ POOL_SIZE=$(/bin/cat $POOL_FILE)
+else
+ POOL_SIZE=512
+fi
+/bin/dd if=/dev/urandom of=$RANDOM_SEED count=1 bs=$POOL_SIZE &> /dev/null
stat_done
stat_busy "Saving System Clock"