diff options
author | jkh <jkh@FreeBSD.org> | 1997-05-18 14:10:06 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-05-18 14:10:06 +0000 |
commit | 8195d51ed073c25282a97fadfe8a48315c7e8022 (patch) | |
tree | 1b0c4b216786ad1fae45b6fe25c25faad958bf69 /etc/netstart | |
parent | a20592cd42cb3b342c187874d9ba8745657e1ebd (diff) | |
download | FreeBSD-src-8195d51ed073c25282a97fadfe8a48315c7e8022.zip FreeBSD-src-8195d51ed073c25282a97fadfe8a48315c7e8022.tar.gz |
Bring back /etc/netstart for those who are sitting in single user and
wish only to bring up their interfaces. This script is not actually called
by any other script and exists purely for user convenience.
Requested by: pst
Diffstat (limited to 'etc/netstart')
-rwxr-xr-x | etc/netstart | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/etc/netstart b/etc/netstart new file mode 100755 index 0000000..533f833 --- /dev/null +++ b/etc/netstart @@ -0,0 +1,22 @@ +#!/bin/sh - +# +# $Id: netstart,v 1.45.2.1 1996/11/06 09:22:16 phk Exp $ +# From: @(#)netstart 5.9 (Berkeley) 3/30/91 + +# 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 +echo 'Doing stage two network startup:' +network_pass2 +exit 0 |