Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Jun 2011 11:36:10 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r222746 - head/etc
Message-ID:  <201106061136.p56BaAX0029316@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hrs
Date: Mon Jun  6 11:36:10 2011
New Revision: 222746
URL: http://svn.freebsd.org/changeset/base/222746

Log:
  Do not mark lo0 as IFDISABLED even if there is no $ifconfig_lo0_ipv6 line.

Modified:
  head/etc/network.subr

Modified: head/etc/network.subr
==============================================================================
--- head/etc/network.subr	Mon Jun  6 11:10:38 2011	(r222745)
+++ head/etc/network.subr	Mon Jun  6 11:36:10 2011	(r222746)
@@ -102,7 +102,7 @@ ifconfig_up()
 	if afexists inet6; then
 		if checkyesno ipv6_activate_all_interfaces; then
 			_ipv6_opts="-ifdisabled"
-		else
+		elif [ "$1" != "lo0" ]; then
 			_ipv6_opts="ifdisabled"
 		fi
 



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