xref: /netbsd/etc/rc.local (revision bf9ec67e)
1#	$NetBSD: rc.local,v 1.29 2000/10/07 00:22:44 hubertf 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
13echo -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
22echo '.'
23