From 2ea359d7f64e4ab96340d7d077327f983b07747a Mon Sep 17 00:00:00 2001 From: ache Date: Fri, 20 Oct 2000 16:32:05 +0000 Subject: [PATCH] Increase entropy file size from 4096 to 16384 because 4096 actually is not enough to cause reseeding --- etc/rc.shutdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc.shutdown b/etc/rc.shutdown index 67194148f81f..601cdec994ef 100644 --- a/etc/rc.shutdown +++ b/etc/rc.shutdown @@ -78,7 +78,7 @@ case ${entropy_file} in ;; *) dd if=/dev/random of=${entropy_file_confirmed} \ - bs=4096 count=1 2> /dev/null + bs=16384 count=1 2> /dev/null ;; esac umask ${oumask}