renumber {36,96}-clear-root-password to go after install-base-system
[invirt/packages/invirt-autoinstaller.git] / common / usr / lib / xen-tools / debian.d / 36-clear-root-password
diff --git a/common/usr/lib/xen-tools/debian.d/36-clear-root-password b/common/usr/lib/xen-tools/debian.d/36-clear-root-password
deleted file mode 100755 (executable)
index e3ed53d..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-#
-#  This script unsets the root password, so the VM owner can log in at
-#  the console.
-#
-
-prefix=$1
-
-if [ -e /usr/lib/xen-tools/common.sh ]; then
-    . /usr/lib/xen-tools/common.sh
-else
-    . ./hooks/common.sh
-fi
-
-logMessage Script $0 starting
-
-chroot ${prefix} passwd root -d
-
-logMessage Script $0 finished