=================================================================== RCS file: /cvs/openbsd/fill_chroot/fill_chroot,v retrieving revision 1.16 retrieving revision 1.21 diff -u -r1.16 -r1.21 --- openbsd/fill_chroot/fill_chroot 2010/01/11 21:16:33 1.16 +++ openbsd/fill_chroot/fill_chroot 2019/11/04 01:13:18 1.21 @@ -1,12 +1,15 @@ #!/bin/sh -# $RedRiver: fill_chroot,v 1.15 2009/05/11 21:07:35 andrew Exp $ +# $AFresh1: fill_chroot,v 1.20 2012/06/10 03:29:42 andrew Exp $ CHROOT=${CHROOT:=/home/andrew/www} CHROOT=`echo $CHROOT | sed -e 's,/*$,,'` export CHROOT +BINDIR=$( dirname $( readlink -f $0 ) ) _find="-type f -a (" _find="${_find} -name *.so.* -o -name *.so" +_find="${_find} -o -path */usr/bin/* -o -path */usr/sbin/*" +_find="${_find} -o -path */usr/local/bin/* -o -path */usr/local/sbin/*" echo Installing Directory Structure install -d -m 1750 -o www -g bin ${CHROOT}/tmp @@ -33,7 +36,6 @@ pax -r -w -L -p e $_f ${CHROOT} done -_find="${_find} -o -name perl" if [ -e /usr/local/sbin/femail ]; then echo Installing femail into ${CHROOT} @@ -78,19 +80,26 @@ _find="${_find} -o -name speedy*" fi -if [ -e ${CHROOT}/usr/bin/cvs ]; then +if [ -e ${CHROOT}/cgi-bin/cvsweb ]; then + echo Installing cvsweb depends + for _f in \ + /usr/bin/{co,cvs,diff,perl,rcsdiff,rlog,uname} \ + ; do + echo pax -r -w -L -p e $_f ${CHROOT} + pax -r -w -L -p e $_f ${CHROOT} + done + +elif [ -e ${CHROOT}/usr/bin/cvs ]; then _f=/usr/bin/cvs echo Installing cvs echo pax -r -w -L -p e $_f ${CHROOT} pax -r -w -L -p e $_f ${CHROOT} - - _find="${_find} -o -name cvs" fi _find="${_find} )" echo Installing dependencies into ${CHROOT} -find ${CHROOT}/usr ${_find} | - xargs find_depends | \ +find ${CHROOT}/usr ${_find} -print0 | + xargs -0 "${BINDIR}"/find_depends | \ sort -u | \ { local _f @@ -101,4 +110,4 @@ } echo Fixing ldconfig \(/var/run/ld.so.hints\) -fix_ldconfig +"${BINDIR}"/fix_ldconfig