molecules/scripts/remaster_pre.sh

24 lines
660 B
Bash
Raw Normal View History

2010-09-17 13:40:17 +02:00
#!/bin/sh
# Path to molecules.git dir
SABAYON_MOLECULE_HOME="${SABAYON_MOLECULE_HOME:-/sabayon}"
export SABAYON_MOLECULE_HOME
PKGS_DIR="${SABAYON_MOLECULE_HOME}/pkgcache"
2010-09-17 13:40:17 +02:00
CHROOT_PKGS_DIR="${CHROOT_DIR}/var/lib/entropy/client/packages"
[[ ! -d "${PKGS_DIR}" ]] && mkdir -p "${PKGS_DIR}"
[[ ! -d "${CHROOT_PKGS_DIR}" ]] && mkdir -p "${CHROOT_PKGS_DIR}"
# make sure it's all clean before mounting
2010-09-17 13:40:17 +02:00
rm -rf "${CHROOT_PKGS_DIR}"/*
echo "Mounting bind to ${CHROOT_PKGS_DIR}"
mount --bind "${PKGS_DIR}" "${CHROOT_PKGS_DIR}" || exit 1
content=$(ls -1 "${CHROOT_DIR}/proc" | wc -l)
if [ "${content}" -le 3 ]; then
mount -t proc proc "${CHROOT_DIR}/proc"
fi
2010-09-17 13:40:17 +02:00
exit 0