NetBSD/etc/rc.d/ldconfig

25 lines
352 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: ldconfig,v 1.2 2000/05/13 08:45:07 lukem 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 runtime link editor directory cache."
ldconfig
fi
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"