--- rc.sysinit.evms 2004-01-29 17:04:35 +0200 +++ rc.sysinit 2004-02-09 17:04:11 +0200 @@ -275,8 +275,16 @@ /sbin/setsysfont >/dev/null 2>&1 && SETSYSFONT_DONE=1 || SETSYSFONT_DONE= fi +# Activate EVMS +EVMS_ACTIVE= +STARTEVMS=/sbin/startevms +if [ -x "$STARTEVMS" ]; then + action "Starting up EVMS:" "$STARTEVMS" init + EVMS_ACTIVE=1 +fi + # Add raid devices -if [ -f /proc/mdstat -a -s /etc/raidtab ]; then +if [ -z "$EVMS_ACTIVE" -a -f /proc/mdstat -a -s /etc/raidtab ]; then echo -n "Starting up RAID devices: " rc=0