14 lines
348 B
Bash
Executable File
14 lines
348 B
Bash
Executable File
#!/bin/sh
|
|
PKGS_DIR="/sabayon/pkgcache"
|
|
CHROOT_PKGS_DIR="${CHROOT_DIR}/var/lib/entropy/client/packages"
|
|
|
|
# make sure to not leak /proc
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
|
|
echo "Umounting bind to ${CHROOT_PKGS_DIR}"
|
|
umount "${CHROOT_PKGS_DIR}" || exit 1
|
|
|
|
exit 0
|