From: Greg Price Date: Wed, 18 Feb 2009 07:40:14 +0000 (-0500) Subject: unset root password in -autoinstaller-guest X-Git-Tag: 0.0.16^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-autoinstaller.git/commitdiff_plain/85c9b64ec808442943a864c1043f426acf437457?ds=inline unset root password in -autoinstaller-guest svn path=/trunk/packages/invirt-autoinstaller/; revision=2167 --- diff --git a/debian/changelog b/debian/changelog index dc36cbd..569512e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-autoinstaller (0.0.16) unstable; urgency=low + + * Unset root password in guest, so it's unset in autoinstalled images. + + -- Greg Price 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. diff --git a/debian/invirt-autoinstaller-guest.postinst b/debian/invirt-autoinstaller-guest.postinst new file mode 100644 index 0000000..a0226cf --- /dev/null +++ b/debian/invirt-autoinstaller-guest.postinst @@ -0,0 +1,15 @@ +#!/bin/sh + +case "$1" in + configure) + passwd root -d + ;; + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0