1 #!/bin/sh 2 # 3 # $NetBSD: ldconfig,v 1.6 2003/01/08 04:17:19 jhawk Exp $ 4 # 5 6 # PROVIDE: ldconfig 7 # REQUIRE: mountall 8 # BEFORE: DAEMON 9 10 . /etc/rc.subr 11 12 name="ldconfig" 13 ldconfig_command="/sbin/ldconfig" 14 start_cmd="ldconfig_start" 15 stop_cmd=":" 16 17 ldconfig_start() 18 { 19 if [ -f ${ldconfig_command} ]; then 20 echo "Creating a.out runtime link editor directory cache." 21 ${ldconfig_command} ${rc_flags} 22 fi 23 } 24 25 load_rc_config $name 26 run_rc_command "$1" 27