svn commit: r222746 - head/etc

[ Available lists | Index of svn-src-all | Month of Jun 2011 | Week of 6 Jun 2011 | Raw email | View thread | Wrap long lines | Reply | Tag ]
From
Hiroki Sato <hrs@FreeBSD.org>
Date
6 Jun 2011 11:36:10
Subject
svn commit: r222746 - head/etc
Message-ID
201106061136.p56BaAX0029316@svn.freebsd.org


[ Hide this part ]
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


Elapsed time: 0.063 seconds