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

View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Copy packages list outside tarball
pkglist_file="${CHROOT_DIR}/etc/sabayon-pkglist"
if [ -f "${pkglist_file}" ]; then
tar_dirname=$(dirname "${TAR_PATH}")
if [ -d "${tar_dirname}" ]; then
cp "${pkglist_file}" "${TAR_PATH}.pkglist"
fi
fi