Deleted Added
full compact
netif (155610) netif (159138)
1#!/bin/sh
2#
3# Copyright (c) 2003 The FreeBSD Project. All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

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

17# IN NO EVENT SHALL THE PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT,
18# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24#
1#!/bin/sh
2#
3# Copyright (c) 2003 The FreeBSD Project. All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8# 1. Redistributions of source code must retain the above copyright

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

17# IN NO EVENT SHALL THE PROJECT BE LIABLE FOR ANY DIRECT, INDIRECT,
18# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24#
25# $FreeBSD: head/etc/rc.d/netif 155610 2006-02-13 20:08:31Z imp $
25# $FreeBSD: head/etc/rc.d/netif 159138 2006-06-01 11:01:54Z thompsa $
26#
27
28# PROVIDE: netif
29# REQUIRE: atm1 ipfilter mountcritlocal serial sppp sysctl
30# KEYWORD: nojail
31
32. /etc/rc.subr
33. /etc/network.subr

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

66
67 # Configure the interface(s).
68 network_common ifn_start verbose
69
70 if [ -f /etc/rc.d/ipfilter ] ; then
71 # Resync ipfilter
72 /etc/rc.d/ipfilter resync
73 fi
26#
27
28# PROVIDE: netif
29# REQUIRE: atm1 ipfilter mountcritlocal serial sppp sysctl
30# KEYWORD: nojail
31
32. /etc/rc.subr
33. /etc/network.subr

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

66
67 # Configure the interface(s).
68 network_common ifn_start verbose
69
70 if [ -f /etc/rc.d/ipfilter ] ; then
71 # Resync ipfilter
72 /etc/rc.d/ipfilter resync
73 fi
74 if [ -f /etc/rc.d/bridge -a -n "$_cmdifn" ] ; then
75 /etc/rc.d/bridge start $_cmdifn
76 fi
74}
75
76network_stop()
77{
78 # Set the list of interfaces to work on.
79 #
80 _cmdifn=$*
81

--- 95 unchanged lines hidden ---
77}
78
79network_stop()
80{
81 # Set the list of interfaces to work on.
82 #
83 _cmdifn=$*
84

--- 95 unchanged lines hidden ---