NetBSD/etc/rc.d/ldconfig

27 lines
428 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: ldconfig,v 1.5 2002/03/22 04:33:58 thorpej Exp $
#
# PROVIDE: ldconfig
# REQUIRE: mountall
# BEFORE: DAEMON
. /etc/rc.subr
name="ldconfig"
ldconfig_command="/sbin/ldconfig"
start_cmd="ldconfig_start"
stop_cmd=":"
ldconfig_start()
{
if [ -f ${ldconfig_command} ]; then
echo "Creating a.out runtime link editor directory cache."
${ldconfig_command}
fi
}
load_rc_config $name
run_rc_command "$1"