Deleted Added
full compact
rc (31644) rc (32028)
1#!/bin/sh
1#!/bin/sh
2# $Id: rc,v 1.140 1997/12/09 07:22:04 danny Exp $
2# $Id: rc,v 1.141 1997/12/09 10:06:49 danny Exp $
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10# Note that almost all the user-configurable behavior is no longer in

--- 211 unchanged lines hidden (view full) ---

222 touch /var/account/acct
223 fi
224 accton /var/account/acct
225fi
226
227# Make shared lib searching a little faster. Leave /usr/lib first if you
228# add your own entries or you may come to grief.
229_LDC=/usr/lib
3# From: @(#)rc 5.27 (Berkeley) 6/5/91
4
5# System startup script run by init on autoboot
6# or after single-user.
7# Output and error are redirected to console by init,
8# and the console is the controlling terminal.
9
10# Note that almost all the user-configurable behavior is no longer in

--- 211 unchanged lines hidden (view full) ---

222 touch /var/account/acct
223 fi
224 accton /var/account/acct
225fi
226
227# Make shared lib searching a little faster. Leave /usr/lib first if you
228# add your own entries or you may come to grief.
229_LDC=/usr/lib
230if [ -d /usr/lib/compat ]; then _LDC="${_LDC} /usr/lib/compat" ; fi
231if [ -d /usr/X11R6/lib ]; then _LDC="${_LDC} /usr/X11R6/lib" ; fi
232if [ -d /usr/local/lib ]; then _LDC="${_LDC} /usr/local/lib" ; fi
230for i in $ldconfig_paths; do
231 if test -d $i; then
232 _LDC="${_LDC} $i"
233 fi
234done
233echo 'setting ldconfig path:' ${_LDC}
234ldconfig ${_LDC}
235
236# Now start up miscellaneous daemons that don't belong anywhere else
237#
238echo -n starting standard daemons:
239if [ "X${inetd_enable}" != X"NO" ]; then
240 echo -n ' inetd'; inetd ${inetd_flags}

--- 78 unchanged lines hidden ---
235echo 'setting ldconfig path:' ${_LDC}
236ldconfig ${_LDC}
237
238# Now start up miscellaneous daemons that don't belong anywhere else
239#
240echo -n starting standard daemons:
241if [ "X${inetd_enable}" != X"NO" ]; then
242 echo -n ' inetd'; inetd ${inetd_flags}

--- 78 unchanged lines hidden ---