From b2a2382d0bf01df3ef3958731583900e6125b746 Mon Sep 17 00:00:00 2001 From: "Michael K. Johnson" Date: Tue, 28 Aug 2001 12:32:43 +0000 Subject: 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. --- rc.d/rc.sysinit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rc.d') 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" -- cgit v1.2.1