diff options
Diffstat (limited to 'testing/scripts/build-baseimage')
-rwxr-xr-x | testing/scripts/build-baseimage | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/scripts/build-baseimage b/testing/scripts/build-baseimage index c26e2462a..4372e54f9 100755 --- a/testing/scripts/build-baseimage +++ b/testing/scripts/build-baseimage @@ -50,8 +50,8 @@ execute "mount -o bind $CACHEDIR $APTCACHE" echo " * Running debootstrap ..." execute "debootstrap --arch=$ROOTFSARCH --include=$PACKAGES $ROOTFSSUITE $LOOPDIR $ROOTFSMIRROR" -echo " * Setting root password to '$ROOTFSPW' ..." -echo root:$ROOTFSPW | chroot $LOOPDIR chpasswd +echo " * Disabling root password ..." +chroot $LOOPDIR passwd -d root echo " * Disabling services ..." for service in $SERVICES |