2010-09-17 13:40:17 +02:00
|
|
|
#!/bin/sh
|
|
|
|
PKGS_DIR="/sabayon/pkgcache"
|
|
|
|
CHROOT_PKGS_DIR="${CHROOT_DIR}/var/lib/entropy/client/packages"
|
|
|
|
|
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-09-17 13:40:17 +02:00
|
|
|
echo "Merging back packages"
|
|
|
|
cp "${CHROOT_PKGS_DIR}"/* "${PKGS_DIR}"/ -Ra
|
|
|
|
rm -rf "${CHROOT_PKGS_DIR}"{,-nonfree,-restricted}/*
|
2010-09-23 20:23:41 +02:00
|
|
|
|
|
|
|
exit 0
|