diff options
author | ache <ache@FreeBSD.org> | 2000-10-20 16:32:05 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-10-20 16:32:05 +0000 |
commit | 2ea359d7f64e4ab96340d7d077327f983b07747a (patch) | |
tree | 0e4e151a30c7c633aa409221f865132df6a67155 /etc | |
parent | 083aa30d63b3faf32773b4279d8502c18bfd2441 (diff) | |
download | FreeBSD-src-2ea359d7f64e4ab96340d7d077327f983b07747a.zip FreeBSD-src-2ea359d7f64e4ab96340d7d077327f983b07747a.tar.gz |
Increase entropy file size from 4096 to 16384 because 4096 actually is not
enough to cause reseeding
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.shutdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown index 6719414..601cdec 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} |