Open GoogleCodeExporter opened 9 years ago
still happens in 2.11. please fix it
my Workaround:
--- ganeti-2.11.5.orig/lib/hypervisor/hv_xen.py
+++ ganeti-2.11.5/lib/hypervisor/hv_xen.py
@@ -1381,8 +1381,8 @@ class XenHvmHypervisor(XenHypervisor):
nic_type_str = ", type=paravirtualized"
else:
# parameter 'model' is only valid with type 'ioemu'
- nic_type_str = ", model=%s, type=%s" % \
- (nic_type, constants.HT_HVM_VIF_IOEMU)
+ # thats not true!!!!!!! remove type= if PVHVM
+ nic_type_str = ", model=%s" % nic_type
for idx, nic in enumerate(instance.nics):
nic_str = "mac=%s%s" % (nic.mac, nic_type_str)
ip = getattr(nic, "ip", None)
Original comment by stephan....@gmail.com
on 27 May 2015 at 12:59
Original issue reported on code.google.com by
sma...@lehigh.edu
on 10 Dec 2013 at 2:41