daa8f0d0f9
This avoids `find` to complain about Bad File Descriptor
15 lines
373 B
Bash
Executable File
15 lines
373 B
Bash
Executable File
#!/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
|
|
|
|
mount -t proc proc "${CHROOT_DIR}/proc"
|
|
|
|
exit 0
|