[BACK]Return to rc.local CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/rc.local, Revision 1.13

1.13    ! deraadt     1: #      $OpenBSD: rc.local,v 1.12 1997/06/12 14:52:24 millert Exp $
1.4       deraadt     2:
1.10      deraadt     3: # site-specific startup actions, daemons, and other things which
                      4: # can be done AFTER your system goes into securemode.  For actions
                      5: # which should be done BEFORE your system has gone into securemode
                      6: # please see /etc/rc.securelevel
                      7:
                      8: # site-specific startup actions, daemons which can be run
1.4       deraadt     9: # Add your local changes additions to this file
1.1       deraadt    10:
1.4       deraadt    11: echo -n 'starting local daemons:'
1.1       deraadt    12:
1.13    ! deraadt    13: #if [ -f /usr/local/etc/httpd/httpd ]; then
1.4       deraadt    14: #      echo -n ' httpd';       /usr/local/etc/httpd/httpd
                     15: #fi
1.1       deraadt    16:
1.4       deraadt    17: #if [ -f /usr/local/sbin/sshd ]; then
                     18: #      echo -n ' sshd';        /usr/local/sbin/sshd
1.12      millert    19: #fi
                     20:
                     21: # Set pcvt screen saver time to 5min (see scon(1) for more options)
                     22: #if test -x /usr/sbin/ispcvt -a -x /usr/sbin/scon && /usr/sbin/ispcvt; then
                     23: #      echo -n ' scon';        /usr/sbin/scon -t 300
1.6       deraadt    24: #fi
                     25:
1.11      millert    26: # Alternatively, xdm may be started in /etc/ttys.
                     27: #if [ -x /usr/X11R6/bin/xdm ]; then
                     28: #      echo -n ' xdm';         /usr/X11R6/bin/xdm
                     29: #fi
1.1       deraadt    30:
                     31: echo '.'