Bug 5061 - rc.sysinit calls "raidadd" rather that "raidstart"
Summary: rc.sysinit calls "raidadd" rather that "raidstart"
Keywords:
Status: CLOSED NEXTRELEASE
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: initscripts
Version: 6.0
Hardware: i386
OS: Linux
medium
high
Target Milestone: ---
Assignee: David Lawrence
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-09-11 01:36 UTC by mrovner
Modified: 2008-05-01 15:37 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed: 1999-09-11 06:12:41 UTC
Embargoed:


Attachments (Terms of Use)

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.


Note You need to log in before you can comment on or make changes to this bug.