diff options
author | ache <ache@FreeBSD.org> | 2000-10-20 20:26:05 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-10-20 20:26:05 +0000 |
commit | 1721a457e90d387b9fdcc50a9afe285e561e6eff (patch) | |
tree | 84369e8910232ed4eb8fc19248d11bba6bcde449 | |
parent | 3fecd0dfbcf0e2653c066470bb3511f94bfdc487 (diff) | |
download | FreeBSD-src-1721a457e90d387b9fdcc50a9afe285e561e6eff.zip FreeBSD-src-1721a457e90d387b9fdcc50a9afe285e561e6eff.tar.gz |
Back out increasing entropy file size workaround and wait for real fix instead.
Requested by: markm
-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 601cdec..6719414 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=16384 count=1 2> /dev/null + bs=4096 count=1 2> /dev/null ;; esac umask ${oumask} |