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 298694 Details for
Bug 435173
Traceback when performing CDROM install on iBFT enabled iSCSI system
[?]
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]
Eliminate the traceback, when there is no network
ibft-no-net.patch (text/plain), 947 bytes, created by
Martin Sivák
on 2008-03-20 14:02:41 UTC
(
hide
)
Description:
Eliminate the traceback, when there is no network
Filename:
MIME Type:
Creator:
Martin Sivák
Created:
2008-03-20 14:02:41 UTC
Size:
947 bytes
patch
obsolete
>diff --git a/iscsi.py b/iscsi.py >index d23f198..bcb54df 100644 >--- a/iscsi.py >+++ b/iscsi.py >@@ -114,6 +114,10 @@ class iscsiTarget: > return True > > def startNode(self, node): >+ if node is None or self.portal is None: >+ log.warn("unable to find portal information") >+ return >+ > argv = [ "-m", "node", "-T", node, "-p", self.portal, > "-o", "update", "-n", "node.conn[0].startup", > "-v", "automatic" ] >@@ -122,6 +126,10 @@ class iscsiTarget: > stdout = "/dev/tty5", stderr="/dev/tty5") > > def loginToNode(self, node): >+ if node is None or self.portal is None: >+ log.warn("unable to find portal information") >+ return >+ > argv = [ "-m", "node", "-T", node, "-p", self.portal, "--login" ] > log.debug("iscsiadm %s" %(string.join(argv),)) > rc = iutil.execWithRedirect(ISCSIADM, argv,
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 435173
: 298694 |
301341