Displaying 3 results from an estimated 3 matches for "dev_interface".
Did you mean:
dest_interface
2011 Aug 11
0
[PATCH] map nics-> bridges correctly in network pages, when cancelling nic configuration return to network page
...d, 17 insertions(+), 24 deletions(-)
diff --git a/scripts/ovirt-config-setup.py b/scripts/ovirt-config-setup.py
index 4bd46d5..bddf6aa 100755
--- a/scripts/ovirt-config-setup.py
+++ b/scripts/ovirt-config-setup.py
@@ -774,6 +774,7 @@ class NodeConfigScreen():
try:
dev_interface = device.get_property("INTERFACE")
dev_vendor = device.get_property("ID_VENDOR_FROM_DATABASE")
+ dev_type = device.get_property("DEVTYPE")
try:
dev_vendor = dev_vendor.replace(",",...
2005 Aug 15
1
XML for tc hierarchy representation
Hi list, I would like to know about any proposed XML representation for
tc objects hierarchy. I found something at "LTCM, a Linux QoS API
Library" (http://artemis.av.it.pt/~ltcmmm/) that looks like a start, but
any others are welcome.
I''m starting a project to automatically syncronize traffic shape rules
between servers and thought XML is the best way to represent tc
2011 Aug 10
0
[PATCH] remove network page loop when selecting other pages
...elif self.net_apply_config == 1:
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(sel...