2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2001-04-25 17:00:17 +04:00
|
|
|
# $NetBSD: ldconfig,v 1.4 2001/04/25 13:00:17 lukem Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: ldconfig
|
|
|
|
# REQUIRE: mountall
|
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="ldconfig"
|
2001-04-25 17:00:17 +04:00
|
|
|
ldconfig_command="/sbin/ldconfig"
|
2000-03-10 14:53:23 +03:00
|
|
|
start_cmd="ldconfig_start"
|
|
|
|
stop_cmd=":"
|
|
|
|
|
|
|
|
ldconfig_start()
|
|
|
|
{
|
2001-04-25 17:00:17 +04:00
|
|
|
if [ -f ${ldconfig_command} ]; then
|
2000-09-29 21:49:25 +04:00
|
|
|
echo "Creating a.out runtime link editor directory cache."
|
2001-04-25 17:00:17 +04:00
|
|
|
${ldconfig_command}
|
2000-03-10 14:53:23 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|