Merged in r2821,2824,2827 from hvirt branch.
authorGreg Brockman <gdb@mit.edu>
Sun, 31 Jan 2010 23:50:32 +0000 (18:50 -0500)
committerGreg Brockman <gdb@mit.edu>
Sun, 31 Jan 2010 23:50:32 +0000 (18:50 -0500)
svn path=/trunk/packages/invirt-xen-config/; revision=2972

debian/changelog
debian/transform_xend-config.sxp.invirt.mako

index 27ed90a..796195d 100644 (file)
@@ -1,3 +1,9 @@
+invirt-xen-config (0.0.29) unstable; urgency=low
+
+  * Merged in r2821,2824,2827 from hvirt branch.
+
+ -- Greg Brockman <gdb@mit.edu>  Sun, 31 Jan 2010 18:44:53 -0500
+
 invirt-xen-config (0.0.28) unstable; urgency=low
 
   * Restarting xend is just a *really bad* idae.
 invirt-xen-config (0.0.28) unstable; urgency=low
 
   * Restarting xend is just a *really bad* idae.
index bb31e68..90555e7 100755 (executable)
@@ -3,11 +3,21 @@ print <<'EOF';
 <%
 from invirt.config import structs as cfg
 import os
 <%
 from invirt.config import structs as cfg
 import os
-hostname = os.uname()[1].split('.')[0]
+fqdn = os.uname()[1]
+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
+    break
+
+class xend_template_exception(Exception): pass
+if internal_ip is None:
+  raise xend_template_exception('Could not find an internal IP in the configuration for host %s' % fqdn)
 %>
 EOF
 
 %>
 EOF
 
-s/^\#?\(xend-relocation-address ''\)/(xend-relocation-address '\${hostname}-internal')/m or die;
+s/^\#?\(xend-relocation-address ''\)/(xend-relocation-address '\${internal_ip}')/m or die;
 s/^\(xend-relocation-hosts-allow '[^']*'\)/(xend-relocation-hosts-allow '')/m or die;
 s/^\(dom0-min-mem [0-9]*\)/(dom0-min-mem 1536)/m or die;
 print;
 s/^\(xend-relocation-hosts-allow '[^']*'\)/(xend-relocation-hosts-allow '')/m or die;
 s/^\(dom0-min-mem [0-9]*\)/(dom0-min-mem 1536)/m or die;
 print;