From 3b75c7ddc8b6cf39a51c610abd4df65f1343be85 Mon Sep 17 00:00:00 2001 From: Reto Buerki Date: Thu, 6 Dec 2012 11:54:27 +0100 Subject: [PATCH] Use execute wrapper to disable root password --- testing/scripts/build-baseimage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scripts/build-baseimage b/testing/scripts/build-baseimage index 4372e54f9..08d05d12a 100755 --- a/testing/scripts/build-baseimage +++ b/testing/scripts/build-baseimage @@ -51,7 +51,7 @@ echo " * Running debootstrap ..." execute "debootstrap --arch=$ROOTFSARCH --include=$PACKAGES $ROOTFSSUITE $LOOPDIR $ROOTFSMIRROR" echo " * Disabling root password ..." -chroot $LOOPDIR passwd -d root +execute "chroot $LOOPDIR passwd -d root" echo " * Disabling services ..." for service in $SERVICES