Deleted Added
full compact
rc (25469) rc (25478)
1#!/bin/sh
1#!/bin/sh
2# $Id: rc,v 1.120 1997/05/04 12:50:33 andreas Exp $
2# $Id: rc,v 1.121 1997/05/04 22:33:17 andreas 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

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

212if [ -d /usr/X11R6/lib ]; then _LDC="${_LDC} /usr/X11R6/lib" ; fi
213if [ -d /usr/local/lib ]; then _LDC="${_LDC} /usr/local/lib" ; fi
214echo 'setting ldconfig path:' ${_LDC}
215ldconfig ${_LDC}
216
217# Now start up miscellaneous daemons that don't belong anywhere else
218#
219echo -n starting standard daemons:
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

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

212if [ -d /usr/X11R6/lib ]; then _LDC="${_LDC} /usr/X11R6/lib" ; fi
213if [ -d /usr/local/lib ]; then _LDC="${_LDC} /usr/local/lib" ; fi
214echo 'setting ldconfig path:' ${_LDC}
215ldconfig ${_LDC}
216
217# Now start up miscellaneous daemons that don't belong anywhere else
218#
219echo -n starting standard daemons:
220echo -n ' inetd'; inetd
220echo -n ' inetd'; inetd ${inetd_flags}
221echo -n ' cron'; cron
222
223if [ "X${lpd_enable}" = X"YES" ]; then
224 echo -n ' printer'; lpd
225fi
226
227if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then
228 echo -n ' sendmail'; sendmail ${sendmail_flags}

--- 66 unchanged lines hidden ---
221echo -n ' cron'; cron
222
223if [ "X${lpd_enable}" = X"YES" ]; then
224 echo -n ' printer'; lpd
225fi
226
227if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then
228 echo -n ' sendmail'; sendmail ${sendmail_flags}

--- 66 unchanged lines hidden ---