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 574609 Details for
Bug 807714
v7 1.5 R12 requires udisks package not in RHEL5
[?]
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]
planner patch to only use udisks on RHEL 6 and beyond, and all other products
planner.patch (text/plain), 1.31 KB, created by
Greg Nichols
on 2012-04-02 19:46:26 UTC
(
hide
)
Description:
planner patch to only use udisks on RHEL 6 and beyond, and all other products
Filename:
MIME Type:
Creator:
Greg Nichols
Created:
2012-04-02 19:46:26 UTC
Size:
1.31 KB
patch
obsolete
>Index: planner.py >=================================================================== >--- planner.py (revision 1192) >+++ planner.py (working copy) >@@ -37,7 +37,7 @@ > dictionaries, and provides lists of test(s) by various criteria > """ > >- def __init__(self, options, virtualization): >+ def __init__(self, options, virtualization, redHatRelease): > self.options = options > self.Debugging = self.options.debug != Constants.off > self.deviceTests = list() >@@ -46,6 +46,7 @@ > self.devices = list() > self.virtualization = virtualization > self.plannedTests = list() >+ self.redHatRelease = redHatRelease > > def analyse(self, testDirectory): > """Walk through the test directory looking for v7.Test classes""" >@@ -125,8 +126,10 @@ > if not hal.enabled: > kudzu = Kudzu() > self.devices.extend(kudzu.getDevices()) >- udisks = UDisksDeviceDetector() >- self.devices.extend(udisks.getDevices()) >+ # run udisks only on RHEL 6 and beyond >+ if not "Red Hat Enterprise Linux" in self.redHatRelease.getProduct() or self.redHatRelease.getVersion() > 5: >+ udisks = UDisksDeviceDetector() >+ self.devices.extend(udisks.getDevices()) > > def getTestsFor(self, device): > devices = list()
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 807714
:
574608
| 574609