1*0696600cSBjoern A. Zeeb#!/bin/sh - 2*0696600cSBjoern A. Zeeb# 3*0696600cSBjoern A. Zeeb# Copyright (c) 1993 The FreeBSD Project 4*0696600cSBjoern A. Zeeb# All rights reserved. 5*0696600cSBjoern A. Zeeb# 6*0696600cSBjoern A. Zeeb# Redistribution and use in source and binary forms, with or without 7*0696600cSBjoern A. Zeeb# modification, are permitted provided that the following conditions 8*0696600cSBjoern A. Zeeb# are met: 9*0696600cSBjoern A. Zeeb# 1. Redistributions of source code must retain the above copyright 10*0696600cSBjoern A. Zeeb# notice, this list of conditions and the following disclaimer. 11*0696600cSBjoern A. Zeeb# 2. Redistributions in binary form must reproduce the above copyright 12*0696600cSBjoern A. Zeeb# notice, this list of conditions and the following disclaimer in the 13*0696600cSBjoern A. Zeeb# documentation and/or other materials provided with the distribution. 14*0696600cSBjoern A. Zeeb# 15*0696600cSBjoern A. Zeeb# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16*0696600cSBjoern A. Zeeb# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*0696600cSBjoern A. Zeeb# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18*0696600cSBjoern A. Zeeb# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*0696600cSBjoern A. Zeeb# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*0696600cSBjoern A. Zeeb# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21*0696600cSBjoern A. Zeeb# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*0696600cSBjoern A. Zeeb# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*0696600cSBjoern A. Zeeb# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*0696600cSBjoern A. Zeeb# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*0696600cSBjoern A. Zeeb# SUCH DAMAGE. 26*0696600cSBjoern A. Zeeb 27*0696600cSBjoern A. Zeeb# This file is NOT called by any of the other scripts - it has been 28*0696600cSBjoern A. Zeeb# obsoleted by /etc/rc.d/* and is provided here only for user 29*0696600cSBjoern A. Zeeb# convenience (if you're sitting in single user mode and wish to start 30*0696600cSBjoern A. Zeeb# the network by hand, this script will do it for you). 31*0696600cSBjoern A. Zeeb# 32*0696600cSBjoern A. Zeeb 33*0696600cSBjoern A. Zeeb_start=quietstart 34*0696600cSBjoern A. Zeeb 35*0696600cSBjoern A. Zeeb/etc/rc.d/devd ${_start} 36*0696600cSBjoern A. Zeeb/etc/rc.d/hostid ${_start} 37*0696600cSBjoern A. Zeeb/etc/rc.d/hostname ${_start} 38*0696600cSBjoern A. Zeeb/etc/rc.d/ipmon ${_start} 39*0696600cSBjoern A. Zeeb/etc/rc.d/ipfilter ${_start} 40*0696600cSBjoern A. Zeeb/etc/rc.d/ipnat ${_start} 41*0696600cSBjoern A. Zeeb/etc/rc.d/ipfs ${_start} 42*0696600cSBjoern A. Zeeb/etc/rc.d/netif ${_start} 43*0696600cSBjoern A. Zeeb/etc/rc.d/ipsec ${_start} 44*0696600cSBjoern A. Zeeb/etc/rc.d/ppp ${_start} 45*0696600cSBjoern A. Zeeb/etc/rc.d/ipfw ${_start} 46*0696600cSBjoern A. Zeeb/etc/rc.d/routing ${_start} 47*0696600cSBjoern A. Zeeb/etc/rc.d/route6d ${_start} 48*0696600cSBjoern A. Zeeb/etc/rc.d/routed ${_start} 49*0696600cSBjoern A. Zeeb/etc/rc.d/rtsold ${_start} 50*0696600cSBjoern A. Zeeb/etc/rc.d/nisdomain ${_start} 51*0696600cSBjoern A. Zeeb 52*0696600cSBjoern A. Zeebexit 0 53