daa8f0d0f9
This avoids `find` to complain about Bad File Descriptor
15 lines
393 B
Bash
Executable File
15 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
PKGS_DIR="/sabayon/pkgcache"
|
|
CHROOT_PKGS_DIR="${CHROOT_DIR}/var/lib/entropy/client/packages"
|
|
|
|
# make sure to not leak /proc
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
umount "${CHROOT_DIR}/proc" &> /dev/null
|
|
|
|
echo "Merging back packages"
|
|
cp "${CHROOT_PKGS_DIR}"/* "${PKGS_DIR}"/ -Ra
|
|
rm -rf "${CHROOT_PKGS_DIR}"{,-nonfree,-restricted}/*
|
|
|
|
exit 0
|