#!/sbin/runscript # 2002/07/19 dpollet: extracted from checkfs along with lvm depend() { need checkroot } start() { # Start raid if [ -x /sbin/raidstart ] then ebegin "Setting up the RAID" raidstart -a eend $? "Failed to setup the RAID" # RAID is dead :) fi } stop() { if [ -x /sbin/raidstop ] then ebegin "Stopping the RAID" raidstop -a eend $? "Failed to stop the RAID" fi }