diff options
author | Bill Nottingham <notting@redhat.com> | 2004-11-10 16:28:57 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-11-10 16:28:57 +0000 |
commit | 3c5fc4f5ea168b53106810ac734e1bbe1b98e657 (patch) | |
tree | 385933a81f17aca362965025a058c5fe22f7c2f0 /rc.d/rc.sysinit | |
parent | 107aacef3a5ca220e98e83ea2b7c885f5641167f (diff) | |
download | initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar.gz initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar.bz2 initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.tar.xz initscripts-3c5fc4f5ea168b53106810ac734e1bbe1b98e657.zip |
don't completely override AUTOFSCK_OPT
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
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 |