Handle new prodconfig schema iannucci
authorPeter Iannucci <iannucci@mit.edu>
Tue, 2 Jul 2013 01:51:47 +0000 (21:51 -0400)
committerPeter Iannucci <iannucci@mit.edu>
Tue, 2 Jul 2013 01:51:47 +0000 (21:51 -0400)
debian/changelog
debian/transform_xend-config.sxp.invirt.mako

index 4260ecb..7a6195c 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 90555e7..0ed5816 100755 (executable)
@@ -8,7 +8,7 @@ internal_ip = None
 # 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