X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-autoinstaller.git/blobdiff_plain/cc73494d297a380a22c5725d5ea5544b249110a0..85c9b64ec808442943a864c1043f426acf437457:/debian/invirt-autoinstaller-guest.postinst 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