summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-03-09 04:02:58 +0000
committercgd <cgd@NetBSD.org>1994-03-09 04:02:58 +0000
commit3ed8e27e29dcea19f0d1761898cbcfe6bc412363 (patch)
tree8618bbd6735b9fd3fc86979a0a8e472129bd718f
parentbadabd063407629ac505ec8684f6b1d21665cb42 (diff)
make booting comments a bit cleaner
-rw-r--r--etc/rc11
1 files changed, 6 insertions, 5 deletions
diff --git a/etc/rc b/etc/rc
index a1d9dadd69c..d2a1993af75 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
# @(#)rc 5.27 (Berkeley) 6/5/91
-# $Id: rc,v 1.34 1994/02/26 03:29:27 cgd Exp $
+# $Id: rc,v 1.35 1994/03/09 04:02:58 cgd Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -19,10 +19,10 @@ export PATH
if [ -e /fastboot ]
then
- echo Fast boot ... skipping disk checks
+ echo "Fast boot; skipping disk checks."
elif [ $1x = autobootx ]
then
- echo Automatic reboot in progress...
+ echo "Automatic boot in progress..."
fsck -p
case $? in
0)
@@ -31,6 +31,7 @@ then
exit 1
;;
4)
+ echo "Rebooting..."
reboot
echo "reboot failed... help!"
exit 1
@@ -40,7 +41,7 @@ then
exit 1
;;
12)
- echo "Reboot interrupted"
+ echo "Boot interrupted"
exit 1
;;
130)
@@ -54,7 +55,7 @@ then
esac
fi
-trap "echo 'Reboot interrupted'; exit 1" 3
+trap "echo 'Boot interrupted'; exit 1" 3
swapon -a