Bug 42150 - Obsolote reference to raidadd and raidrun in rc.sysinit
Summary: Obsolote reference to raidadd and raidrun in rc.sysinit
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Red Hat Linux
Classification: Retired
Component: raidtools
Version: 7.1
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Doug Ledford
QA Contact: David Lawrence
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2001-05-24 14:36 UTC by Jszsef Csongradi
Modified: 2007-04-18 16:33 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2004-11-27 22:39:34 UTC
Embargoed:


Attachments (Terms of Use)

Description Jszsef Csongradi 2001-05-24 14:36:55 UTC
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)

Description of problem:
In the /etc/rc.d/rc.sysinit the lines:

if [$RESULT -gt 0 -a -x /sbin/raidadd -a -x /sbin/raidrun]; then
         /sbin/raidadd $i
         /sbin/raidrun $i
         
         RESULT=$?
fi

is obsolote in version 7.1 . The correct reference: mkraid and raidstart:

if [$RESULT -gt 0 -a -x /sbin/mkraid -a -x /sbin/raidstart]; then
         /sbin/mkraid $i
         /sbin/raidstart $i
         
         RESULT=$?
fi

Please correct problem.


How reproducible:
Always

Steps to Reproduce:
1. After boot, when /etc/raidtab present
2.
3.
	

Additional info:


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