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