Since raidtools no longer supplies "raidadd" and "raidrun", the scripting to start the raid devices fails becuase it tries to run them instead of "raidstart". The script looks like this: ------------------------------------------- . . . # Add raid devices if [ -f /proc/mdstat -a -f /etc/raidtab -a -x /sbin/raidadd ]; then action "Starting up RAID devices" raidadd -a rc=$? if [ $rc = 0 ]; then raidrun -a rc=$? fi . . . ------------------------------------------ Should just test for "/sbin/raidstart", change the action to run raidstart, and drop that if..fi block that tries to run raidrun.
already fixed in the latest initscripts in Raw Hide.