svn path=/trunk/packages/invirt-xen-config/; revision=1786
+invirt-xen-config (0.0.18) unstable; urgency=low
+
+ * Explicitly grab the short form of the hostname to assemble the backend
+ hostname
+
+ -- Evan Broder <broder@mit.edu> Wed, 26 Nov 2008 01:27:07 -0500
+
invirt-xen-config (0.0.17) unstable; urgency=low
* Pin libxen3 to the hardy repository so it doesn't get pulled from
<%
from invirt.config import structs as cfg
import os
-hostname = os.uname()[1]
+hostname = os.uname()[1].split('.')[0]
%>
EOF