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

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

1.42    ! robert      1: #      $OpenBSD: rc.local,v 1.41 2010/11/05 10:03:00 ajacoutot 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
1.42    ! robert     11:        [ -x /etc/rc.d/${_r} ] && /etc/rc.d/${_r} start
1.40      robert     12: done
                     13:
1.39      sturm      14: # Add your local startup actions here.
1.1       deraadt    15:
                     16: echo '.'