1 # $NetBSD: rc.local,v 1.30 2002/07/23 10:48:01 wennmach Exp $ 2 # originally from: @(#)rc.local 8.3 (Berkeley) 4/28/94 3 # 4 # This file is (nearly) the last thing invoked by /etc/rc during a 5 # normal boot, via /etc/rc.d/local. 6 # 7 # It is intended to be edited locally to add site-specific boot-time 8 # actions, such as starting locally installed daemons. 9 # 10 # An alternative option is to create site-specific /etc/rc.d scripts. 11 # 12 13 echo -n 'Starting local daemons:' 14 15 # Add your local daemons here. 16 # 17 18 #if [ -f /usr/pkg/etc/rc.d/apache ]; then 19 # /usr/pkg/etc/rc.d/apache start 20 #fi 21 22 echo '.' 23