Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 152166 Details for
Bug 233308
anaconda doesn't remove all invalid RAID requests under kickstart
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch to fix raid probing
233308.patch (text/plain), 1.15 KB, created by
Chris Lumens
on 2007-04-10 18:01:52 UTC
(
hide
)
Description:
patch to fix raid probing
Filename:
MIME Type:
Creator:
Chris Lumens
Created:
2007-04-10 18:01:52 UTC
Size:
1.15 KB
patch
obsolete
>Index: autopart.py >=================================================================== >RCS file: /usr/local/CVS/anaconda/autopart.py,v >retrieving revision 1.151.2.4 >diff -u -r1.151.2.4 autopart.py >--- autopart.py 2 Mar 2005 18:49:30 -0000 1.151.2.4 >+++ autopart.py 10 Apr 2007 17:56:55 -0000 >@@ -1402,6 +1402,23 @@ > > partitions.addRequest(req) > >+ # Remove all preexisting RAID requests that reference nonexistant member >+ # requests. These RAIDs should only be present on installs where we're >+ # using preexisting partitions that already have RAID information. >+ removeReqs = [] >+ >+ for req in partitions.requests: >+ if isinstance(req, partRequests.RaidRequestSpec): >+ lst = req.raidmembers >+ else: >+ continue >+ >+ if len(filter (lambda id: partitions.getRequestByID(id) != None, lst)) == 0: >+ removeReqs.append(req) >+ >+ for req in removeReqs: >+ partitions.removeRequest(req) >+ > # sanity checks for the auto partitioning requests; mostly only useful > # for kickstart as our installclass defaults SHOULD be sane > for req in partitions.requests:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 233308
:
150613
| 152166