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