Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Aug 2015 06:11:11 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r286563 - head/etc/rc.d
Message-ID:  <201508100611.t7A6BBb9063872@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Mon Aug 10 06:11:10 2015
New Revision: 286563
URL: https://svnweb.freebsd.org/changeset/base/286563

Log:
  Finish reverting r286410 - sorry, I somehow missed this with svn commit.

Modified:
  head/etc/rc.d/netif

Modified: head/etc/rc.d/netif
==============================================================================
--- head/etc/rc.d/netif	Mon Aug 10 00:53:45 2015	(r286562)
+++ head/etc/rc.d/netif	Mon Aug 10 06:11:10 2015	(r286563)
@@ -37,8 +37,6 @@ name="netif"
 rcvar="${name}_enable"
 start_cmd="netif_start"
 stop_cmd="netif_stop"
-wlanup_cmd="wlan_up"
-wlandown_cmd="wlan_down"
 cloneup_cmd="clone_up"
 clonedown_cmd="clone_down"
 clear_cmd="doclear"
@@ -67,9 +65,6 @@ netif_start()
 		trap : 2
 	fi
 
-	# Create IEEE802.3 interface
-	wlan_up $cmdifn
-
 	# Create cloned interfaces
 	clone_up $cmdifn
 
@@ -96,14 +91,12 @@ netif_start()
 netif_stop()
 {
 	_clone_down=1
-	_wlan_down=1
 	netif_stop0 $*
 }
 
 doclear()
 {
 	_clone_down=
-	_wlan_down=
 	netif_stop0 $*
 }
 
@@ -118,11 +111,6 @@ netif_stop0()
 	# Deconfigure the interface(s)
 	netif_common ifn_stop $cmdifn
 
-	# Destroy wlan interfaces
-	if [ -n "$_wlan_down" ]; then
-		wlan_down $cmdifn
-	fi
-
 	# Destroy cloned interfaces
 	if [ -n "$_clone_down" ]; then
 		clone_down $cmdifn



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508100611.t7A6BBb9063872>