2010-09-17 13:40:17 +02:00
|
|
|
#!/bin/sh
|
|
|
|
PKGS_DIR="/sabayon/pkgcache"
|
|
|
|
CHROOT_PKGS_DIR="${CHROOT_DIR}/var/lib/entropy/client/packages"
|
|
|
|
|
2011-03-29 14:49:50 +02:00
|
|
|
# load common stuff
|
|
|
|
. /sabayon/scripts/remaster_post_common.sh
|
|
|
|
|
2010-09-23 20:23:41 +02:00
|
|
|
# make sure to not leak /proc
|
|
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
|
|
|
2010-12-21 18:52:58 +01:00
|
|
|
echo "Umounting bind to ${CHROOT_PKGS_DIR}"
|
|
|
|
umount "${CHROOT_PKGS_DIR}" || exit 1
|
2010-09-23 20:23:41 +02:00
|
|
|
|
|
|
|
exit 0
|