[molecules/arm-base] fixup remaster_post code, don't mess with /proc

This commit is contained in:
Fabio Erculiani
2012-01-31 21:25:05 +01:00
parent fc0aeb88d4
commit 755d5888d3
3 changed files with 18 additions and 2 deletions

13
scripts/mmc_remaster_post.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
PKGS_DIR="/sabayon/pkgcache"
CHROOT_PKGS_DIR="${CHROOT_DIR}/var/lib/entropy/client/packages"
# remove entropy hwash
rm -f "${CHROOT_DIR}"/etc/entropy/.hw.hash
# remove entropy pid file
rm -f "${CHROOT_DIR}"/var/run/entropy/entropy.lock
echo "Umounting bind to ${CHROOT_PKGS_DIR}"
umount "${CHROOT_PKGS_DIR}" || exit 1
exit 0