Deleted Added
full compact
netif (165664) netif (166583)
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 165664 2006-12-30 22:53:20Z yar $
25# $FreeBSD: head/etc/rc.d/netif 166583 2007-02-09 12:11:27Z flz $
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

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

52 #
53
54 # disable SIGINT (Ctrl-c) when running at startup
55 trap : 2
56
57 # Create cloned interfaces
58 clone_up
59
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

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

52 #
53
54 # disable SIGINT (Ctrl-c) when running at startup
55 trap : 2
56
57 # Create cloned interfaces
58 clone_up
59
60 # Create Fast EtherChannel interfaces
61 fec_up
62
60 # Create IPv6<-->IPv4 tunnels
61 gif_up
62
63 # Rename interfaces.
64 ifnet_rename
65 fi
66
67 # Configure the interface(s).

--- 115 unchanged lines hidden ---
63 # Create IPv6<-->IPv4 tunnels
64 gif_up
65
66 # Rename interfaces.
67 ifnet_rename
68 fi
69
70 # Configure the interface(s).

--- 115 unchanged lines hidden ---