Bug 5061

Summary: rc.sysinit calls "raidadd" rather that "raidstart"
Product: [Retired] Red Hat Linux Reporter: mrovner
Component: initscriptsAssignee: David Lawrence <dkl>
Status: CLOSED NEXTRELEASE QA Contact:
Severity: high Docs Contact:
Priority: medium    
Version: 6.0   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-09-11 06:12:41 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description mrovner 1999-09-11 01:36:59 UTC
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.

Comment 1 Bill Nottingham 1999-09-11 06:12:59 UTC
already fixed in the latest initscripts in Raw Hide.