From e3b66023f2f9085ff57feaf9a90d6cb8263aa665 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Thu, 20 Jul 2000 19:25:12 +0000 Subject: [PATCH] dd is too verbose writting entropy, redirect its output to /dev/null Add period at the end of sentence --- etc/rc.shutdown | 5 +++-- 1 file 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