summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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