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