aboutsummaryrefslogtreecommitdiff
path: root/etc/netstart
blob: 8b4e97581374dbc563d27494f29c8b38abf53b25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh -
#
#	$Id: netstart,v 1.51 1997/05/18 20:11:44 jkh Exp $
#	From: @(#)netstart	5.9 (Berkeley) 3/30/91

# This file is NOT called by any of the other scripts - it has been
# obsoleted by /etc/rc.network and is provided here only for user
# convenience (if you're sitting in single user mode and wish to start
# the network by hand, this script will do it for you).
#

# If there is a global system configuration file, suck it in.
if [ -f /etc/rc.conf ]; then
	. /etc/rc.conf
fi

if [ -f /etc/rc.network ]; then
	. /etc/rc.network
else
	echo "Sorry, I can't find /etc/rc.network - aborting."
	exit 1
fi

echo 'Doing stage one network startup:'
network_pass1
exit 0