diff options
author | jwd <jwd@FreeBSD.org> | 2000-10-16 06:16:44 +0000 |
---|---|---|
committer | jwd <jwd@FreeBSD.org> | 2000-10-16 06:16:44 +0000 |
commit | 6c9c173e79a6cd1e5eca2a4e6dece0367078b5fb (patch) | |
tree | 9bb59f0aebc7e7ca9eb39e92b80aac0f7fa75a9a | |
parent | ac37933794048085d527118e8248db255127c494 (diff) | |
download | FreeBSD-src-6c9c173e79a6cd1e5eca2a4e6dece0367078b5fb.zip FreeBSD-src-6c9c173e79a6cd1e5eca2a4e6dece0367078b5fb.tar.gz |
Style fix only.
init 6 vs. /sbin/reboot problem still exists (pr 14829)
Submitted by: Doug Barton <DougB@gorean.org>
-rw-r--r-- | etc/rc | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 |