NetBSD/etc/rc.d/ldconfig

27 lines
438 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: ldconfig,v 1.6 2003/01/08 04:17:19 jhawk Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: ldconfig
# REQUIRE: mountall
# BEFORE: DAEMON
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
name="ldconfig"
ldconfig_command="/sbin/ldconfig"
2000-03-10 14:53:23 +03:00
start_cmd="ldconfig_start"
stop_cmd=":"
ldconfig_start()
{
if [ -f ${ldconfig_command} ]; then
echo "Creating a.out runtime link editor directory cache."
${ldconfig_command} ${rc_flags}
2000-03-10 14:53:23 +03:00
fi
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"