netstart revision 25895
125895Sjkh#!/bin/sh -
225895Sjkh#
325895Sjkh#	$Id: netstart,v 1.45.2.1 1996/11/06 09:22:16 phk Exp $
425895Sjkh#	From: @(#)netstart	5.9 (Berkeley) 3/30/91
525895Sjkh
625895Sjkh# If there is a global system configuration file, suck it in.
725895Sjkhif [ -f /etc/rc.conf ]; then
825895Sjkh	. /etc/rc.conf
925895Sjkhfi
1025895Sjkh
1125895Sjkhif [ -f /etc/rc.network ]; then
1225895Sjkh	. /etc/rc.network
1325895Sjkhelse
1425895Sjkh	echo "Sorry, I can't find /etc/rc.network - aborting."
1525895Sjkh	exit 1
1625895Sjkhfi
1725895Sjkh
1825895Sjkhecho 'Doing stage one network startup:'
1925895Sjkhnetwork_pass1
2025895Sjkhecho 'Doing stage two network startup:'
2125895Sjkhnetwork_pass2
2225895Sjkhexit 0
23