netstart revision 294784
156760Srwatson#!/bin/sh -
2108412Srwatson#
356760Srwatson# Copyright (c) 1993  The FreeBSD Project
456760Srwatson# All rights reserved.
5108412Srwatson#
6108412Srwatson# Redistribution and use in source and binary forms, with or without
756760Srwatson# modification, are permitted provided that the following conditions
856760Srwatson# are met:
956760Srwatson# 1. Redistributions of source code must retain the above copyright
1056760Srwatson#    notice, this list of conditions and the following disclaimer.
1156760Srwatson# 2. Redistributions in binary form must reproduce the above copyright
1256760Srwatson#    notice, this list of conditions and the following disclaimer in the
1356760Srwatson#    documentation and/or other materials provided with the distribution.
1456760Srwatson#
1556760Srwatson# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1656760Srwatson# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1756760Srwatson# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1856760Srwatson# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1956760Srwatson# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2056760Srwatson# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2156760Srwatson# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2256760Srwatson# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2356760Srwatson# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2456760Srwatson# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2556760Srwatson# SUCH DAMAGE.
2656760Srwatson#
2756760Srwatson# $FreeBSD: stable/10/etc/netstart 294784 2016-01-26 08:57:45Z des $
2866076Srwatson#	From: @(#)netstart	5.9 (Berkeley) 3/30/91
2956760Srwatson#
3056760Srwatson
3156760Srwatson# This file is NOT called by any of the other scripts - it has been
3279531Sru# obsoleted by /etc/rc.d/* and is provided here only for user
3356760Srwatson# convenience (if you're sitting in single user mode and wish to start
3456760Srwatson# the network by hand, this script will do it for you).
3559514Sphantom#
3659514Sphantom
3775222Sru_start=quietstart
3856760Srwatson
3984306Sru/etc/rc.d/devd ${_start}
4084306Sru/etc/rc.d/hostid ${_start}
4156760Srwatson/etc/rc.d/hostname ${_start}
4256760Srwatson/etc/rc.d/ipmon ${_start}
4356760Srwatson/etc/rc.d/ipfilter ${_start}
4456760Srwatson/etc/rc.d/ipnat ${_start}
4556760Srwatson/etc/rc.d/ipfs ${_start}
4656760Srwatson/etc/rc.d/sppp ${_start}
4756760Srwatson# /etc/rc.d/atm1 ${_start}
4870481Sru# . /etc/rc.d/atm2.sh ${_start}
49131504Sru# . /etc/rc.d/atm3.sh ${_start}
50131504Sru/etc/rc.d/netif ${_start}
5156791Smpp/etc/rc.d/ipsec ${_start}
5256760Srwatson/etc/rc.d/ppp ${_start}
5356760Srwatson/etc/rc.d/ipfw ${_start}
5456760Srwatson/etc/rc.d/routing ${_start}
5556760Srwatson/etc/rc.d/mroute6d ${_start}
5670481Sru/etc/rc.d/route6d ${_start}
5756760Srwatson/etc/rc.d/mrouted ${_start}
5856760Srwatson/etc/rc.d/routed ${_start}
5956760Srwatson/etc/rc.d/rtsold ${_start}
6056760Srwatson/etc/rc.d/nisdomain ${_start}
6168716Sru
6268716Sruexit 0
6356760Srwatson