NetBSD/etc/rc.d/ldconfig

25 lines
357 B
Plaintext
Raw Normal View History

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