aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-07-20 19:25:12 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-07-20 19:25:12 +0000
commite3b66023f2f9085ff57feaf9a90d6cb8263aa665 (patch)
treeae5e153cffce532c358e7f6243bf7dbd0e84f2e2 /etc
parent5976ee7e318151153ac358917336b953c621c07e (diff)
downloadsrc-e3b66023f2f9085ff57feaf9a90d6cb8263aa665.tar.gz
src-e3b66023f2f9085ff57feaf9a90d6cb8263aa665.zip
dd is too verbose writting entropy, redirect its output to /dev/null
Add period at the end of sentence
Notes
Notes: svn path=/head/; revision=63689
Diffstat (limited to 'etc')
-rw-r--r--etc/rc.shutdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown
index 4abeda0d9d6c..b2af1196335b 100644
--- a/etc/rc.shutdown
+++ b/etc/rc.shutdown
@@ -32,11 +32,12 @@ case ${entropy_file} in
[Nn][Oo] | '')
;;
*)
- echo "Writing entropy file"
+ echo "Writing entropy file."
rm -f ${entropy_file}
touch ${entropy_file} && \
chmod 600 ${entropy_file} && \
- dd if=/dev/random of=${entropy_file} bs=4096 count=1
+ dd if=/dev/random of=${entropy_file} \
+ bs=4096 count=1 2> /dev/null
;;
esac