Home | History | Annotate | Line # | Download | only in rc.d
ldconfig revision 1.3
      1 #!/bin/sh
      2 #
      3 # $NetBSD: ldconfig,v 1.3 2000/09/29 17:49:25 fvdl Exp $
      4 #
      5 
      6 # PROVIDE: ldconfig
      7 # REQUIRE: mountall
      8 
      9 . /etc/rc.subr
     10 
     11 name="ldconfig"
     12 start_cmd="ldconfig_start"
     13 stop_cmd=":"
     14 
     15 ldconfig_start()
     16 {
     17 	if [ -f /sbin/ldconfig ]; then
     18 		echo "Creating a.out runtime link editor directory cache."
     19 		ldconfig
     20 	fi
     21 }
     22 
     23 load_rc_config $name
     24 run_rc_command "$1"
     25