Deleted Added
full compact
routing (42270) routing (42621)
1#!/bin/sh -
2#
1#!/bin/sh -
2#
3# $Id: rc.network,v 1.36 1998/11/27 07:06:11 jkoshy Exp $
3# $Id: rc.network,v 1.37 1999/01/03 22:19:23 jkh 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.

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

26 echo '.'
27
28 # Initial ATM interface configuration
29 if [ "X${atm_enable}" = X"YES" -a -f /etc/rc.atm ]; then
30 . /etc/rc.atm
31 atm_pass1
32 fi
33
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.

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

26 echo '.'
27
28 # Initial ATM interface configuration
29 if [ "X${atm_enable}" = X"YES" -a -f /etc/rc.atm ]; then
30 . /etc/rc.atm
31 atm_pass1
32 fi
33
34 # ISDN subsystem startup
35 if [ "X${isdn_enable}" = X"YES" -a -f /etc/rc.isdn ]; then
36 . /etc/rc.isdn
37 fi
38
34 # Set up all the network interfaces, calling startup scripts if needed
35 for ifn in ${network_interfaces}; do
36 if [ -e /etc/start_if.${ifn} ]; then
37 . /etc/start_if.${ifn}
38 fi
39 # Do the primary ifconfig if specified
40 eval ifconfig_args=\$ifconfig_${ifn}
41 if [ -n "${ifconfig_args}" ] ; then

--- 268 unchanged lines hidden ---
39 # Set up all the network interfaces, calling startup scripts if needed
40 for ifn in ${network_interfaces}; do
41 if [ -e /etc/start_if.${ifn} ]; then
42 . /etc/start_if.${ifn}
43 fi
44 # Do the primary ifconfig if specified
45 eval ifconfig_args=\$ifconfig_${ifn}
46 if [ -n "${ifconfig_args}" ] ; then

--- 268 unchanged lines hidden ---