Annotation of openbsd/fill_chroot/fix_ldconfig, Revision 1.3
1.1 andrew 1: #!/bin/sh
1.3 ! andrew 2: # $RedRiver: fix_ldconfig,v 1.2 2005/12/21 18:16:03 andrew Exp $
1.1 andrew 3:
1.3 ! andrew 4: CHROOT=${CHROOT:=/var/www}
1.1 andrew 5:
6: if [ ${CHROOT}"X" == "X" ]; then
7: echo No CHROOT Specified!
8: exit 255
9: fi
10:
11: mkdir -p ${CHROOT}/bin
12: mkdir -p ${CHROOT}/var/run
13:
14: cp /sbin/ldconfig ${CHROOT}/bin
15: chroot ${CHROOT} /bin/ldconfig /usr/local/lib
16: rm -f ${CHROOT}/bin/ldconfig
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>