summaryrefslogtreecommitdiffstats
path: root/etc/rc.shutdown
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>2000-07-20 19:25:12 +0000
committerache <ache@FreeBSD.org>2000-07-20 19:25:12 +0000
commit1948548eeed3c7bc37ba98998755426eb3c4bef7 (patch)
tree947240609fc8bbc909d8686a40555f228340e8b3 /etc/rc.shutdown
parent1ab6aa1440acc1591f4cb7abaecf71916469bb80 (diff)
downloadFreeBSD-src-1948548eeed3c7bc37ba98998755426eb3c4bef7.zip
FreeBSD-src-1948548eeed3c7bc37ba98998755426eb3c4bef7.tar.gz
dd is too verbose writting entropy, redirect its output to /dev/null
Add period at the end of sentence
Diffstat (limited to 'etc/rc.shutdown')
-rw-r--r--etc/rc.shutdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/rc.shutdown b/etc/rc.shutdown
index 4abeda0..b2af119 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
OpenPOWER on IntegriCloud