Deleted Added
full compact
network.subr (48687) network.subr (48842)
1#!/bin/sh -
2#
1#!/bin/sh -
2#
3# $Id: rc.network,v 1.48 1999/07/07 12:49:45 peter Exp $
3# $Id: rc.network,v 1.49 1999/07/08 18:56:02 peter Exp $
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all the user-configurable behavior is no longer in
7# this file, but rather in /etc/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 46 unchanged lines hidden (view full) ---

58 showstat=false
59 if [ -e /etc/start_if.${ifn} ]; then
60 . /etc/start_if.${ifn}
61 showstat=true
62 fi
63 # Do the primary ifconfig if specified
64 eval ifconfig_args=\$ifconfig_${ifn}
65 if [ -n "${ifconfig_args}" ] ; then
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all the user-configurable behavior is no longer in
7# this file, but rather in /etc/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 46 unchanged lines hidden (view full) ---

58 showstat=false
59 if [ -e /etc/start_if.${ifn} ]; then
60 . /etc/start_if.${ifn}
61 showstat=true
62 fi
63 # Do the primary ifconfig if specified
64 eval ifconfig_args=\$ifconfig_${ifn}
65 if [ -n "${ifconfig_args}" ] ; then
66 ifconfig ${ifn} ${ifconfig_args}
66 # See if we are using DHCP
67 if [ X"${ifconfig_args}" = X"DHCP" ]; then
68 ${dhcp_program} ${dhcp_flags} ${ifn}
69 else
70 ifconfig ${ifn} ${ifconfig_args}
71 fi
67 showstat=true
68 fi
69 # Check to see if aliases need to be added
70 alias=0
71 while :
72 do
73 eval ifconfig_args=\$ifconfig_${ifn}_alias${alias}
74 if [ -n "${ifconfig_args}" ]; then

--- 285 unchanged lines hidden ---
72 showstat=true
73 fi
74 # Check to see if aliases need to be added
75 alias=0
76 while :
77 do
78 eval ifconfig_args=\$ifconfig_${ifn}_alias${alias}
79 if [ -n "${ifconfig_args}" ]; then

--- 285 unchanged lines hidden ---