[BACK]Return to fill_chroot CVS log [TXT][DIR] Up to [local] / openbsd / fill_chroot

Diff for /openbsd/fill_chroot/fill_chroot between version 1.19 and 1.21

version 1.19, 2011/08/16 02:10:46 version 1.21, 2019/11/04 01:13:18
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $AFresh1: fill_chroot,v 1.18 2011/08/09 00:13:54 andrew Exp $  # $AFresh1: fill_chroot,v 1.20 2012/06/10 03:29:42 andrew Exp $
   
 CHROOT=${CHROOT:=/home/andrew/www}  CHROOT=${CHROOT:=/home/andrew/www}
 CHROOT=`echo $CHROOT | sed -e 's,/*$,,'`  CHROOT=`echo $CHROOT | sed -e 's,/*$,,'`
 export CHROOT  export CHROOT
   BINDIR=$( dirname $( readlink -f $0 ) )
   
 _find="-type f -a ("  _find="-type f -a ("
 _find="${_find} -name *.so.* -o -name *.so"  _find="${_find} -name *.so.* -o -name *.so"
 _find="${_find} -o -path '*/usr/bin' -o -path '*/usr/sbin'"  _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  echo Installing Directory Structure
 install -d -m 1750 -o www -g bin ${CHROOT}/tmp  install -d -m 1750 -o www -g bin ${CHROOT}/tmp
Line 34 
Line 36 
   pax -r -w -L -p e $_f ${CHROOT}    pax -r -w -L -p e $_f ${CHROOT}
   
 done  done
 _find="${_find} -o -name perl"  
   
 if [ -e /usr/local/sbin/femail ]; then  if [ -e /usr/local/sbin/femail ]; then
         echo Installing femail into ${CHROOT}          echo Installing femail into ${CHROOT}
Line 97 
Line 98 
   
 _find="${_find} )"  _find="${_find} )"
 echo Installing dependencies into ${CHROOT}  echo Installing dependencies into ${CHROOT}
 find ${CHROOT}/usr  ${_find} |  find ${CHROOT}/usr  ${_find} -print0 |
      xargs find_depends | \       xargs -0 "${BINDIR}"/find_depends | \
      sort -u | \       sort -u | \
 {  {
     local _f      local _f
Line 109 
Line 110 
 }  }
   
 echo Fixing ldconfig \(/var/run/ld.so.hints\)  echo Fixing ldconfig \(/var/run/ld.so.hints\)
 fix_ldconfig  "${BINDIR}"/fix_ldconfig

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.21

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>