Displaying 2 results from an estimated 2 matches for "nic_dict".
2011 Aug 11
0
[PATCH] map nics-> bridges correctly in network pages, when cancelling nic configuration return to network page
...rface == "lo" and not dev_interface.startswith("br") and not dev_interface.startswith("bond") and not dev_interface.startswith("sit") and not "." in dev_interface:
- if not dev_type == "Bridge":
- self.nic_dict[dev_interface] = "%s,%s,%s,%s,%s,%s" % (dev_interface,dev_bootproto,dev_vendor,dev_address, dev_driver, dev_conf_status)
+ if not dev_interface == "lo" and not dev_interface.startswith("bond") and not dev_interface.startswith("sit") and not "...
2011 Aug 10
0
[PATCH] remove network page loop when selecting other pages
...self.__current_page = NETWORK_PAGE
- elif is_managed(OVIRT_VARS["OVIRT_BOOTPARAMS"]):
+ elif is_managed():
dev_interface,dev_bootproto,dev_vendor,dev_address,dev_driver,dev_conf_status = self.nic_dict[self.nic_lb.current()].split(",", 5)
if self.configured_nics >= 1 and dev_conf_status != "Configured" :
ButtonChoiceWindow(self.screen, "Network", "Hypervisor is already managed, unable to co...