From 68219d8bf6d82f9a2a4c909f9214fdf5a2bf0f95 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 30 Jan 2001 17:00:56 +0000 Subject: fix raid start if it's all modular, and no initrd (#25291) --- rc.d/rc.sysinit | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'rc.d') diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 434d1aad..6d16852c 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -395,7 +395,7 @@ if [ -f /etc/rc.modules ]; then fi # Add raid devices -if [ -f /proc/mdstat -a -f /etc/raidtab ]; then +if [ -f /etc/raidtab ]; then echo -n $"Starting up RAID devices: " rc=0 @@ -403,7 +403,11 @@ if [ -f /proc/mdstat -a -f /etc/raidtab ]; then for i in `grep "^raiddev" /etc/raidtab | awk '{print $2}'` do RAIDDEV=`basename $i` - RAIDSTAT=`grep "^$RAIDDEV : active" /proc/mdstat` + if [ -f /proc/mdstat ]; then + RAIDSTAT=`grep "^$RAIDDEV : active" /proc/mdstat` + else + RAIDSTAT="" + fi if [ -z "$RAIDSTAT" ]; then # Try raidstart first...if that fails then # fall back to raidadd, raidrun. If that -- cgit v1.2.1