+invirt-xen-config (0.0.44) unstable; urgency=low
+
+ * Disable populate-on-demand for HVMs.
+
+ -- Quentin Smith <quentin@mit.edu> Sun, 21 Jul 2013 13:14:53 -0400
+
invirt-xen-config (0.0.43+nmu1) precise; urgency=low
* Use config-package-dev.
check(cdrom is not None)
memory = machine.memory
-maxmem = '2048'
+if machine_type.hvm:
+ # Disable populate-on-demand
+ maxmem = memory
+else:
+ maxmem = '2048'
check(re.match('^[A-Za-z0-9][A-Za-z0-9._-]*$', machine.name))
name = prefix + machine_name
check(re.match('^[0-9a-f-]+$', machine.uuid))