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

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

1.40    ! robert      1: #      $OpenBSD: rc.local,v 1.39 2006/07/28 20:19:46 sturm Exp $
1.4       deraadt     2:
1.39      sturm       3: # Site-specific startup actions, daemons, and other things which
1.10      deraadt     4: # can be done AFTER your system goes into securemode.  For actions
                      5: # which should be done BEFORE your system has gone into securemode
1.39      sturm       6: # please see /etc/rc.securelevel.
1.1       deraadt     7:
1.4       deraadt     8: echo -n 'starting local daemons:'
1.12      millert     9:
1.40    ! robert     10: for _r in $rc_scripts; do
        !            11:        [ -x /etc/rc.d/${_r} ] && /etc/rc.d/${_r} start && echo -n " ${_r}"
        !            12: done
        !            13:
1.39      sturm      14: # Add your local startup actions here.
1.1       deraadt    15:
                     16: echo '.'