diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-24 16:52:45 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-24 16:52:45 +0000 |
commit | e6124fe381387a9a38237aa0a3aa0cc586ca9cd7 (patch) | |
tree | f09347d9d09d8537c02a25c9985bc61ba65e3419 /rc.d/rc.sysinit | |
parent | 14728321af758c7ffc37d5bad1d8b011d07b3dec (diff) | |
download | initscripts-e6124fe381387a9a38237aa0a3aa0cc586ca9cd7.tar initscripts-e6124fe381387a9a38237aa0a3aa0cc586ca9cd7.tar.gz initscripts-e6124fe381387a9a38237aa0a3aa0cc586ca9cd7.tar.bz2 initscripts-e6124fe381387a9a38237aa0a3aa0cc586ca9cd7.tar.xz initscripts-e6124fe381387a9a38237aa0a3aa0cc586ca9cd7.zip |
use fsck's completion bar
Diffstat (limited to 'rc.d/rc.sysinit')
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 6364db1e..d22b8f04 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -160,7 +160,7 @@ _RUN_QUOTACHECK=0 if [ ! -f /fastboot ]; then STRING="Checking root filesystem" echo $STRING - initlog -c "fsck -T -a $fsckoptions /" + initlog -c "fsck -C -T -a $fsckoptions /" rc=$? if [ "$rc" = "0" ]; then @@ -356,7 +356,7 @@ fi if [ ! -f /fastboot ]; then STRING="Checking filesystems" echo $STRING - initlog -c "fsck -T -R -A -a $fsckoptions" + initlog -c "fsck -C -T -R -A -a $fsckoptions" rc=$? if [ "$rc" = "0" ]; then success "$STRING" |