summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-08-28 02:31:44 +0000
committerBill Nottingham <notting@redhat.com>2001-08-28 02:31:44 +0000
commit2c62b9999d0cf08d8c0280a14e44c4692d61ee18 (patch)
treed68865345132a14f7ff0f26542071ca07c9c24c2
parent35ec8eb5184495892a0e2ab0933fcb5ed793b3b0 (diff)
downloadinitscripts-2c62b9999d0cf08d8c0280a14e44c4692d61ee18.tar.gz
initscripts-2c62b9999d0cf08d8c0280a14e44c4692d61ee18.tar.xz
initscripts-2c62b9999d0cf08d8c0280a14e44c4692d61ee18.zip
change wording slightly
-rwxr-xr-xrc.d/rc.sysinit8
1 files changed, 4 insertions, 4 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 26c9ebb4..2fe46730 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -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 not force file system integrity check..."
+ echo -e -n $"\rPress N within $AUTOFSCK_TIMEOUT seconds to skip filesystem check..."
else
- echo -e -n $"\rPress Y within $AUTOFSCK_TIMEOUT seconds to force file system integrity check..."
+ echo -e -n $"\rPress Y within $AUTOFSCK_TIMEOUT seconds to force filesystem check..."
fi
sleep 1
AUTOFSCK_TIMEOUT=$(($AUTOFSCK_TIMEOUT-1))
@@ -246,9 +246,9 @@ elif [ -f /.autofsck ]; then
else
# PROMPT not allowed
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ] ; then
- echo $"Will force file system integrity check due to default setting"
+ echo $"Forcing file system integrity check due to default setting"
else
- echo $"Will not force file system integrity check due to default setting"
+ echo $"Skipping file system integrity check due to default setting"
fi
fi
fsckoptions="$AUTOFSCK_OPT $fsckoptions"