3 # $NetBSD: ldconfig,v 1.5 2002/03/22 04:33:58 thorpej Exp $
4 # $FreeBSD: src/etc/rc.d/ldconfig,v 1.7 2003/06/30 15:02:05 trhodes Exp $
5 # $DragonFly: src/etc/rc.d/ldconfig,v 1.8 2008/04/15 10:11:35 swildner Exp $
9 # REQUIRE: mountcritremote
15 ldconfig_command
="/sbin/ldconfig"
16 start_cmd
="ldconfig_start"
22 ldconfig
=${ldconfig_command}
23 checkyesno ldconfig_insecure
&& _ins
="-i"
24 if [ -x "${ldconfig_command}" ]; then
26 for i
in ${ldconfig_local_dirs}; do
27 if [ -d "${i}" ]; then
28 ldconfig_paths
="${ldconfig_paths} `find ${i} -type f`"
31 for i
in ${ldconfig_paths} /etc
/ld-elf.so.conf
; do
32 if [ -r "${i}" ]; then
36 echo 'ELF ldconfig path:' ${_LDC}
37 ${ldconfig} -elf ${_ins} ${_LDC}