aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael K. Johnson <johnsonm@redhat.com>2001-08-28 12:32:43 +0000
committerMichael K. Johnson <johnsonm@redhat.com>2001-08-28 12:32:43 +0000
commitb2a2382d0bf01df3ef3958731583900e6125b746 (patch)
tree708c61d4c6a2162e63eac2a96b4e0cbbb1c4f53b
parent9571c4f48829553751d2500de5ac8c133d564750 (diff)
downloadinitscripts-b2a2382d0bf01df3ef3958731583900e6125b746.tar
initscripts-b2a2382d0bf01df3ef3958731583900e6125b746.tar.gz
initscripts-b2a2382d0bf01df3ef3958731583900e6125b746.tar.bz2
initscripts-b2a2382d0bf01df3ef3958731583900e6125b746.tar.xz
initscripts-b2a2382d0bf01df3ef3958731583900e6125b746.zip
Bill, I appreciate your intention of simplifying this, but you have
made it say something that is VERY SIMPLY NOT TRUE. A trivial reading of the code will demonstrate what I am saying. We do NOT skip the fsck, we simply do not set the force fsck argument. "To skip" is not the opposite of "To force". This is a critical change.
-rwxr-xr-xrc.d/rc.sysinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 4a496ee4..537c2901 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -221,7 +221,7 @@ elif [ -f /.autofsck ]; then
(
while [ "$AUTOFSCK_TIMEOUT" -gt 0 ]; do
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ] ; then
- echo -ne $"\rPress N within $AUTOFSCK_TIMEOUT seconds to skip filesystem check..."
+ echo -ne $"\rPress N within $AUTOFSCK_TIMEOUT seconds to not force filesystem check..."
else
echo -ne $"\rPress Y within $AUTOFSCK_TIMEOUT seconds to force filesystem check..."
fi
@@ -248,7 +248,7 @@ elif [ -f /.autofsck ]; then
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ] ; then
echo $"Forcing file system integrity check due to default setting"
else
- echo $"Skipping file system integrity check due to default setting"
+ echo $"Not forcing file system integrity check due to default setting"
fi
fi
fsckoptions="$AUTOFSCK_OPT $fsckoptions"