diff options
-rwxr-xr-x | rc.d/rc.sysinit | 12 |
1 files changed, 6 insertions, 6 deletions
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 |