From 9ccd339ac9079d30b3c58e8e5b1ff8b85e7808df Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 8 Mar 2001 03:21:17 +0000 Subject: tweak raid startup slightly to deal with /etc/raitab but no raid in the kernel (#25291) --- rc.d/rc.sysinit | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rc.d/rc.sysinit') diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 699c1b10..8b27bcdc 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -409,7 +409,11 @@ if [ -f /etc/rc.modules ]; then fi # Add raid devices -if [ -f /etc/raidtab ]; then +if [ ! -f /proc/mdstat ]; then + modprobe md >/dev/null 2>&1 +fi + +if [ -f /proc/mdstat -f /etc/raidtab ]; then echo -n $"Starting up RAID devices: " rc=0 @@ -417,11 +421,7 @@ if [ -f /etc/raidtab ]; then for i in `grep "^raiddev" /etc/raidtab | awk '{print $2}'` do RAIDDEV=`basename $i` - if [ -f /proc/mdstat ]; then - RAIDSTAT=`grep "^$RAIDDEV : active" /proc/mdstat` - else - RAIDSTAT="" - fi + RAIDSTAT=`grep "^$RAIDDEV : active" /proc/mdstat` if [ -z "$RAIDSTAT" ]; then # Try raidstart first...if that fails then # fall back to raidadd, raidrun. If that -- cgit v1.2.1