aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2004-11-10 16:28:57 +0000
committerBill Nottingham <notting@redhat.com>2004-11-10 16:28:57 +0000
commit3c5fc4f5ea168b53106810ac734e1bbe1b98e657 (patch)
tree385933a81f17aca362965025a058c5fe22f7c2f0
parent107aacef3a5ca220e98e83ea2b7c885f5641167f (diff)
downloadinitscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar
initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar.gz
initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar.bz2
initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar.xz
initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.zip
don't completely override AUTOFSCK_OPT
-rwxr-xr-xrc.d/rc.sysinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 6dddce7f..7d346c6c 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -344,7 +344,7 @@ if [ -f /forcefsck ] || strstr "$cmdline" forcefsck ; then
elif [ -f /.autofsck ]; then
[ -f /etc/sysconfig/autofsck ] && . /etc/sysconfig/autofsck
if [ "$AUTOFSCK_DEF_CHECK" = "yes" ]; then
- AUTOFSCK_OPT=-f
+ AUTOFSCK_OPT="$AUTOFSCK_OPT -f"
fi
fsckoptions="$AUTOFSCK_OPT $fsckoptions"
fi