xref: /netbsd/etc/rc.d/ldconfig (revision bf9ec67e)
1#!/bin/sh
2#
3# $NetBSD: ldconfig,v 1.5 2002/03/22 04:33:58 thorpej Exp $
4#
5
6# PROVIDE: ldconfig
7# REQUIRE: mountall
8# BEFORE:  DAEMON
9
10. /etc/rc.subr
11
12name="ldconfig"
13ldconfig_command="/sbin/ldconfig"
14start_cmd="ldconfig_start"
15stop_cmd=":"
16
17ldconfig_start()
18{
19	if [ -f ${ldconfig_command} ]; then
20		echo "Creating a.out runtime link editor directory cache."
21		${ldconfig_command}
22	fi
23}
24
25load_rc_config $name
26run_rc_command "$1"
27