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 188251 Details for
Bug 279811
virt-manager is passing "eth0 (Bridge eth0)" to virt-install instead of bridge name
[?]
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]
Fix for the bug
virt-manager-use-correct-bridge-name.patch (text/plain), 1.57 KB, created by
Eduardo Habkost
on 2007-09-05 23:39:43 UTC
(
hide
)
Description:
Fix for the bug
Filename:
MIME Type:
Creator:
Eduardo Habkost
Created:
2007-09-05 23:39:43 UTC
Size:
1.57 KB
patch
obsolete
>diff -r 6e055c5f5e19 src/virtManager/create.py >--- a/src/virtManager/create.py Fri Aug 31 17:44:47 2007 -0400 >+++ b/src/virtManager/create.py Wed Sep 05 20:39:09 2007 -0300 >@@ -172,12 +172,12 @@ class vmmCreate(gobject.GObject): > network_list.add_attribute(text, 'text', 1) > > device_list = self.window.get_widget("net-device") >- device_model = gtk.ListStore(str, bool) >+ device_model = gtk.ListStore(str, str, bool) > device_list.set_model(device_model) > text = gtk.CellRendererText() > device_list.pack_start(text, True) >- device_list.add_attribute(text, 'text', 0) >- device_list.add_attribute(text, 'sensitive', 1) >+ device_list.add_attribute(text, 'text', 1) >+ device_list.add_attribute(text, 'sensitive', 2) > > # set up the lists for the os-type/os-variant widgets > os_type_list = self.window.get_widget("os-type") >@@ -1141,9 +1141,9 @@ class vmmCreate(gobject.GObject): > net = self.connection.get_net_device(name) > if net.is_shared(): > hasShared = True >- model.append(["%s (%s %s)" % (net.get_name(), _("Bridge"), net.get_bridge()), True]) >- else: >- model.append(["%s (%s)" % (net.get_name(), _("Not bridged")), False]) >+ model.append([net.get_bridge(), "%s (%s %s)" % (net.get_name(), _("Bridge"), net.get_bridge()), True]) >+ else: >+ model.append([net.get_bridge(), "%s (%s)" % (net.get_name(), _("Not bridged")), False]) > return hasShared > > def change_os_type(self, box):
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 279811
: 188251