aboutsummaryrefslogtreecommitdiff
path: root/etc/netstart
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-04-11 01:22:24 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-04-11 01:22:24 +0000
commitd75038b6e7da0ee572d137e2c79119eac139f9d9 (patch)
tree1cd6f01b294fa1df269b646e121a48f7ce1f88c0 /etc/netstart
parentc8aaabd573eb718845b3fa47027b70b24f02509b (diff)
downloadsrc-d75038b6e7da0ee572d137e2c79119eac139f9d9.tar.gz
src-d75038b6e7da0ee572d137e2c79119eac139f9d9.zip
Remove obsolete comments about my-name and my-network.
Have netstart directly source sysconfig so that it stands on its own. Do not source netstart in rc, run it with sh. Rework the dangerous /etc/hostname.* so that it uses a variable with a list of interfaces and a variable for each interface in that list. The files /etc/hostname.* become obsolete with this change, the information is now stored in /etc/sysconfig. Source any /etc/start_if.${ifn} files so they can export things to netstart (plans for future enhancements in this area.) Obsolete /etc/defaultrouter, this is now down with $defaultrouter from sysconfig.
Notes
Notes: svn path=/head/; revision=7750
Diffstat (limited to 'etc/netstart')
-rwxr-xr-xetc/netstart29
1 files changed, 14 insertions, 15 deletions
diff --git a/etc/netstart b/etc/netstart
index 552ad58010f4..92737995a472 100755
--- a/etc/netstart
+++ b/etc/netstart
@@ -1,11 +1,14 @@
#!/bin/sh -
#
-# $Id: netstart,v 1.25 1995/03/30 06:26:08 rgrimes Exp $
+# $Id: netstart,v 1.26 1995/04/09 09:54:41 rgrimes Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
-# my-name is my symbolic name
-# my-netmask is specified in /etc/networks
-#
+# If there is a global system configuration file, suck it in.
+if [ -f /etc/sysconfig ]; then
+ . /etc/sysconfig
+fi
+
+# Set the host name if it is not already set
if [ -z "`hostname -s`" ] ; then
hostname $hostname
fi
@@ -16,16 +19,14 @@ if [ -z "`domainname`" -a -e "/etc/defaultdomain" ] ; then
domainname $domainname
fi
-for i in /etc/hostname.*
-do
- ifn=`expr $i : '/etc/hostname\.\(.*\)'`
- if [ -e /etc/hostname.$ifn ]; then
- if [ -e /etc/start_if.$ifn ]; then
- sh /etc/start_if.$ifn $ifn
- fi
- ifconfig $ifn `cat /etc/hostname.$ifn`
- ifconfig $ifn
+# Set up all the network interfaces, calling startup scripts if needed
+for ifn in ${network_interfaces}; do
+ if [ -e /etc/start_if.${ifn} ]; then
+ . /etc/start_if.${ifn} ${ifn}
fi
+ eval ifconfig_args=\$ifconfig_${ifn}
+ ifconfig ${ifn} ${ifconfig_args}
+ ifconfig ${ifn}
done
# set the address for the loopback interface
@@ -37,8 +38,6 @@ route add 224.0.0.0 -netmask 0xf0000000 -interface $hostname
if [ -n "$defaultrouter" -a "x$defaultrouter" != "xNO" ] ; then
route add default $defaultrouter
-elif [ -f /etc/defaultrouter ] ; then
- route add default `cat /etc/defaultrouter`
fi
# use loopback, not the wire