svn path=/trunk/packages/invirt-autoinstaller/; revision=2167
+invirt-autoinstaller (0.0.16) unstable; urgency=low
+
+ * Unset root password in guest, so it's unset in autoinstalled images.
+
+ -- Greg Price <price@mit.edu> Wed, 18 Feb 2009 02:39:29 -0500
+
invirt-autoinstaller (0.0.15) unstable; urgency=low
* Poke policy-rc.d while using aptitude so we don't try to start daemons.
--- /dev/null
+#!/bin/sh
+
+case "$1" in
+ configure)
+ passwd root -d
+ ;;
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0