[scripts] move hardcoded "/sabayon" path to SABAYON_MOLECULE_HOME env var

This commit is contained in:
Fabio Erculiani
2012-07-25 13:21:49 +02:00
parent d2d0beabc0
commit af53d90d23
22 changed files with 144 additions and 54 deletions

View File

@@ -1,9 +1,14 @@
#!/bin/sh
PKGS_DIR="/sabayon/pkgcache"
# 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"
# load common stuff
. /sabayon/scripts/remaster_post_common.sh
. "${SABAYON_MOLECULE_HOME}"/scripts/remaster_post_common.sh
# make sure to not leak /proc
umount "${CHROOT_DIR}/proc" &> /dev/null