]> spindle.queued.net Git - xodist/commitdiff
initchroot: get rid of apt's bincaches during cleanup
authorAndres Salomon <dilinger@debian.org>
Wed, 20 Aug 2008 04:25:53 +0000 (00:25 -0400)
committerAndres Salomon <dilinger@debian.org>
Wed, 20 Aug 2008 04:25:53 +0000 (00:25 -0400)
Having stale pkgcache.bin stuff from chroot creation was causing
funky mmap errors

Signed-off-by: Andres Salomon <dilinger@debian.org>
initchroot.sh

index bed450a73127f2dfd3cb84678f93ec8a70a6a336..0bb249f4f2c6af8d1eb9e831564e40df9c0dc9ca 100755 (executable)
@@ -130,7 +130,6 @@ mkdir -p ${ROOT_DIR}/etc/gconf/debxo.xml.defaults
 cp %gconf-tree.xml ${ROOT_DIR}/etc/gconf/debxo.xml.defaults/
 
 # add default user
-rm -rf ${ROOT_DIR}/home/*;     # i have no idea what's adding this crap...
 (chroot ${ROOT_DIR} passwd -l root)
 (chroot ${ROOT_DIR} useradd -s /bin/bash --create-home ${DEFUSER})
 (chroot ${ROOT_DIR} passwd -d ${DEFUSER})
@@ -147,3 +146,5 @@ mv ${ROOT_DIR}/sbin/start-stop-daemon.REAL ${ROOT_DIR}/sbin/start-stop-daemon
 (chroot ${ROOT_DIR} aptitude clean)
 umount ${ROOT_DIR}/proc
 umount ${ROOT_DIR}/dev/pts
+rm -rf ${ROOT_DIR}/home/*;     # i have no idea what's adding this crap...
+rm -f ${ROOT_DIR}/var/cache/apt/*.bin