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 12name="ldconfig" 13start_cmd="ldconfig_start" 14stop_cmd=":" 15 16ldconfig_start() 17{ 18 if [ -f /sbin/ldconfig ]; then 19 echo "Creating runtime link editor directory cache." 20 ldconfig 21 fi 22} 23 24run_rc_command "$1" 25