netstart revision 25895
1#!/bin/sh -
2#
3#	$Id: netstart,v 1.45.2.1 1996/11/06 09:22:16 phk Exp $
4#	From: @(#)netstart	5.9 (Berkeley) 3/30/91
5
6# If there is a global system configuration file, suck it in.
7if [ -f /etc/rc.conf ]; then
8	. /etc/rc.conf
9fi
10
11if [ -f /etc/rc.network ]; then
12	. /etc/rc.network
13else
14	echo "Sorry, I can't find /etc/rc.network - aborting."
15	exit 1
16fi
17
18echo 'Doing stage one network startup:'
19network_pass1
20echo 'Doing stage two network startup:'
21network_pass2
22exit 0
23