19 lines
472 B
Bash
Executable File
19 lines
472 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Path to molecules.git dir
|
|
SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}"
|
|
export SABAYON_MOLECULE_HOME
|
|
|
|
PKGS_DIR="${SABAYON_MOLECULE_HOME}/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
|