initial data commit, yay!

This commit is contained in:
Fabio Erculiani
2010-09-17 13:40:17 +02:00
parent 83010d8ed2
commit 862b904c93
152 changed files with 7812 additions and 0 deletions

11
scripts/remaster_pre.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
PKGS_DIR="/sabayon/pkgcache"
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}"
echo "Mounting packages over"
rm -rf "${CHROOT_PKGS_DIR}"/*
cp ${PKGS_DIR}/* "${CHROOT_PKGS_DIR}"/ -Ra
exit 0