aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>1999-03-14 05:46:25 +0000
committerBill Nottingham <notting@redhat.com>1999-03-14 05:46:25 +0000
commitc6e4fe98949b5294bcb96ffd510f0857367a21be (patch)
treee9eb1b816fafc4d05d296e797c95996962275e32 /rc.d
parent6241531ce63110c8e1cf2f208c89ad1e346bc1b8 (diff)
downloadinitscripts-c6e4fe98949b5294bcb96ffd510f0857367a21be.tar
initscripts-c6e4fe98949b5294bcb96ffd510f0857367a21be.tar.gz
initscripts-c6e4fe98949b5294bcb96ffd510f0857367a21be.tar.bz2
initscripts-c6e4fe98949b5294bcb96ffd510f0857367a21be.tar.xz
initscripts-c6e4fe98949b5294bcb96ffd510f0857367a21be.zip
if [ 0 ] don't work in shell. *thwap*
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/functions2
-rwxr-xr-xrc.d/rc.sysinit4
2 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions
index 45de373a..5f4e1d6a 100755
--- a/rc.d/init.d/functions
+++ b/rc.d/init.d/functions
@@ -253,7 +253,7 @@ action() {
echo "$initlogcmds" >&21
fi
- if [ $rc ]; then
+ if [ $rc -eq 0 ]; then
[ "$BOOTUP" = "verbose" ] && {
if [ -n "$output" ]; then
echo
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index e15682f2..933ff7d2 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -52,7 +52,7 @@ if [ -f /forcefsck ]; then
fi
if [ ! -f /fastboot ]; then
- action "Checking root filesystem" fsck -T -a $fsckoptions /
+ action "Checking root filesystem" fsck -V -T -a $fsckoptions /
rc=$?
# A return of 2 or higher means there were serious problems.
@@ -200,7 +200,7 @@ fi
# Check filesystems
if [ ! -f /fastboot ]; then
- action "Checking filesystems" fsck -T -R -A -a $fsckoptions
+ action "Checking filesystems" fsck -V -T -R -A -a $fsckoptions
rc=$?