diff options
Diffstat (limited to 'etc/rc.d/ldconfig')
-rwxr-xr-x | etc/rc.d/ldconfig | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/etc/rc.d/ldconfig b/etc/rc.d/ldconfig deleted file mode 100755 index 22cf6734385e2..0000000000000 --- a/etc/rc.d/ldconfig +++ /dev/null @@ -1,26 +0,0 @@ -#!/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" |