summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-08-28 02:36:03 +0000
committerBill Nottingham <notting@redhat.com>2001-08-28 02:36:03 +0000
commitff4f3e1aa9ffde15850f6a56a341d4e8bda10ec8 (patch)
tree5032f519f621d046eb226a4d4a6a34924686d040
parent2c62b9999d0cf08d8c0280a14e44c4692d61ee18 (diff)
downloadinitscripts-ff4f3e1aa9ffde15850f6a56a341d4e8bda10ec8.tar.gz
initscripts-ff4f3e1aa9ffde15850f6a56a341d4e8bda10ec8.tar.xz
initscripts-ff4f3e1aa9ffde15850f6a56a341d4e8bda10ec8.zip
more wording changes
-rwxr-xr-xrc.d/rc.sysinit6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 2fe46730..765a3886 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -207,7 +207,7 @@ fi
if [ -f /forcefsck ]; then
fsckoptions="-f $fsckoptions"
elif [ -f /.autofsck ]; then
- echo $"Your system appears to have shut down in an uncertain state"
+ echo $"Your system appears to have shut down uncleanly"
AUTOFSCK_TIMEOUT=5
AUTOFSCK_DEF_CHECK=no
[ -f /etc/sysconfig/autofsck ] && . /etc/sysconfig/autofsck
@@ -221,9 +221,9 @@ elif [ -f /.autofsck ]; then
(
while [ "$AUTOFSCK_TIMEOUT" -gt 0 ] do
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ] ; then
- echo -e -n $"\rPress N within $AUTOFSCK_TIMEOUT seconds to skip filesystem check..."
+ echo -ne $"\rPress N within $AUTOFSCK_TIMEOUT seconds to skip filesystem check..."
else
- echo -e -n $"\rPress Y within $AUTOFSCK_TIMEOUT seconds to force filesystem check..."
+ echo -ne $"\rPress Y within $AUTOFSCK_TIMEOUT seconds to force filesystem check..."
fi
sleep 1
AUTOFSCK_TIMEOUT=$(($AUTOFSCK_TIMEOUT-1))