Style fix only.

init 6 vs. /sbin/reboot problem still exists (pr 14829)

Submitted by:	Doug Barton <DougB@gorean.org>
This commit is contained in:
John W. De Boskey 2000-10-16 06:16:44 +00:00
parent 3fc79ca179
commit 991c4ad814
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67181

8
etc/rc
View File

@ -197,11 +197,13 @@ yes)
echo "Using /var/db/entropy as an entropy file"
cat /var/db/entropy > /dev/random 2> /dev/random
else
echo "Can't use ${entropy_file} as an entropy file, trying other sources"
echo "Can't use ${entropy_file} as an entropy file, trying other sources"
# XXX temporary until we can get the entropy
# harvesting rate up
# Entropy below is not great, but better than nothing.
(ps -gauxwww; iostat; vmstat; sysctl -a; dmesg) > /dev/random 2> /dev/random
# Entropy below is not great,
# but better than nothing.
(ps -gauxwww; iostat; vmstat; sysctl -a;
dmesg) > /dev/random 2> /dev/random
( for i in /etc /var/run ; do
cd $i ; ls -al ; cat *
done ) > /dev/random 2> /dev/random