+invirt-xen-config (0.0.38) unstable; urgency=low
+
+ * Treat config.hosts.internal_ips as an array
+
+ -- Peter Iannucci <iannucci@mit.edu> Mon, 01 Jul 2013 21:51:00 -0400
+
invirt-xen-config (0.0.37) unstable; urgency=low
* Support multiple NICs on HVMs.
# This hack is necessary because cfg.hosts is an array rather than a dict.
for host in cfg.hosts:
if host.hostname == fqdn:
- internal_ip = host.internal_ip
+ internal_ip = host.internal_ips[0]
break
class xend_template_exception(Exception): pass