+invirt-xen-config (0.0.51) unstable; urgency=low
+
+ * Fixed code for NIC model options.
+
+ -- Steven Valdez <dvorak42@mit.edu> Wed, 31 Jul 2013 22:28:39 -0400
+
invirt-xen-config (0.0.50) unstable; urgency=low
* Adding NIC model option to DB.
for n in machine.nics:
check(re.match('^[0-9a-fA-F:]+$', n.mac_addr) and re.match('^[0-9.]*$', n.ip))
- if n.model:
+ if n.nic_type:
viftype = viftype.replace("pcnet", n.nic_type)
d = ('%smac=%s, ip=%s, script=vif-invirtroute netdev=%s'
% (viftype, n.mac_addr, n.ip, config.xen.iface))