125895Sjkh#!/bin/sh -
225895Sjkh#
366830Sobrien# Copyright (c) 1993  The FreeBSD Project
466830Sobrien# All rights reserved.
566830Sobrien#
666830Sobrien# Redistribution and use in source and binary forms, with or without
766830Sobrien# modification, are permitted provided that the following conditions
866830Sobrien# are met:
966830Sobrien# 1. Redistributions of source code must retain the above copyright
1066830Sobrien#    notice, this list of conditions and the following disclaimer.
1166830Sobrien# 2. Redistributions in binary form must reproduce the above copyright
1266830Sobrien#    notice, this list of conditions and the following disclaimer in the
1366830Sobrien#    documentation and/or other materials provided with the distribution.
1466830Sobrien#
1566830Sobrien# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1666830Sobrien# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1766830Sobrien# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1866830Sobrien# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1966830Sobrien# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2066830Sobrien# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2166830Sobrien# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2266830Sobrien# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2366830Sobrien# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2466830Sobrien# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2566830Sobrien# SUCH DAMAGE.
2666830Sobrien#
2750472Speter# $FreeBSD$
2825895Sjkh#	From: @(#)netstart	5.9 (Berkeley) 3/30/91
2966830Sobrien#
3025895Sjkh
3125896Sjkh# This file is NOT called by any of the other scripts - it has been
32144153Scperciva# obsoleted by /etc/rc.d/* and is provided here only for user
3325896Sjkh# convenience (if you're sitting in single user mode and wish to start
3425896Sjkh# the network by hand, this script will do it for you).
3525896Sjkh#
3625896Sjkh
37175682Smtm_start=quietstart
3870081Sdes
39175682Smtm/etc/rc.d/devd ${_start}
40190032Sdes/etc/rc.d/hostid ${_start}
41175682Smtm/etc/rc.d/hostname ${_start}
42175682Smtm/etc/rc.d/ipmon ${_start}
43175682Smtm/etc/rc.d/ipfilter ${_start}
44175682Smtm/etc/rc.d/ipnat ${_start}
45175682Smtm/etc/rc.d/ipfs ${_start}
46175682Smtm/etc/rc.d/sppp ${_start}
47175682Smtm# /etc/rc.d/atm1 ${_start}
48175682Smtm# . /etc/rc.d/atm2.sh ${_start}
49175682Smtm# . /etc/rc.d/atm3.sh ${_start}
50175682Smtm/etc/rc.d/netif ${_start}
51175682Smtm/etc/rc.d/ipsec ${_start}
52175682Smtm/etc/rc.d/ppp ${_start}
53175682Smtm/etc/rc.d/ipfw ${_start}
54175682Smtm/etc/rc.d/routing ${_start}
55175682Smtm/etc/rc.d/route6d ${_start}
56175682Smtm/etc/rc.d/routed ${_start}
57256875Sdes/etc/rc.d/rtsold ${_start}
58175682Smtm/etc/rc.d/nisdomain ${_start}
59175682Smtm
6025895Sjkhexit 0
61