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 297822 Details for
Bug 437174
connecting a file to an existing cdrom creates unbootable guest
[?]
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]
Accommodate driver tag when connecting cdrom media
virt-manager-cdrom-5.2-xen-fix.patch (text/plain), 1.07 KB, created by
Cole Robinson
on 2008-03-12 18:48:53 UTC
(
hide
)
Description:
Accommodate driver tag when connecting cdrom media
Filename:
MIME Type:
Creator:
Cole Robinson
Created:
2008-03-12 18:48:53 UTC
Size:
1.07 KB
patch
obsolete
>diff -r 523f2f7501c6 src/virtManager/domain.py >--- a/src/virtManager/domain.py Wed Mar 12 10:37:49 2008 +0100 >+++ b/src/virtManager/domain.py Wed Mar 12 12:43:12 2008 -0400 >@@ -570,13 +570,18 @@ class vmmDomain(gobject.GObject): > doc = libxml2.parseDoc(xml) > ctx = doc.xpathNewContext() > disk_fragment = ctx.xpathEval("/disk") >+ driver_fragment = ctx.xpathEval("/disk/driver") > origdisk = disk_fragment[0].serialize() > disk_fragment[0].setProp("type", type) > elem = disk_fragment[0].newChild(None, "source", None) > if type == "file": > elem.setProp("file", source) >+ if driver_fragment: >+ driver_fragment.setProp("name", type) > else: > elem.setProp("dev", source) >+ if driver_fragment: >+ driver_fragment.setProp("name", "phy") > result = disk_fragment[0].serialize() > logging.debug("connect_cdrom_device produced the following XML: %s" % result) > finally:
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 437174
: 297822 |
303204