NetBSD/etc/rc.local

17 lines
462 B
Plaintext
Raw Normal View History

# $NetBSD: rc.local,v 1.21 1997/08/29 02:24:07 cjs Exp $
# originally from: @(#)rc.local 8.3 (Berkeley) 4/28/94
1993-03-21 12:45:37 +03:00
#
# This file is (nearly) the last thing invoked by /etc/rc during a
# normal boot.
# It is intended to be edited locally to add site-specific boot-time
# actions, such as starting locally installed daemons.
1993-03-21 12:45:37 +03:00
#
echo -n 'starting local daemons:'
# add your local daemons here, following the startup models in /etc/rc
1993-03-21 12:45:37 +03:00
echo -n ' sshd'; sshd
1993-03-21 12:45:37 +03:00
echo '.'