summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/ldconfig
blob: 22cf6734385e228e975e34491095bc25c664f41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#
# $NetBSD: ldconfig,v 1.4 2001/04/25 13:00:17 lukem 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"
OpenPOWER on IntegriCloud