svn commit: r222502 - head/usr.sbin/bsdinstall/scripts

Bjoern A. Zeeb bz at FreeBSD.org
Mon May 30 17:27:48 UTC 2011


Author: bz
Date: Mon May 30 17:27:48 2011
New Revision: 222502
URL: http://svn.freebsd.org/changeset/base/222502

Log:
  Contrary to the rc.conf framework, when manualy enabling IPv6 we have
  to -ifdiabled ourselves.
  
  Sponsored by:	The FreeBSD Foundation
  Sponsored by:	iXsystems

Modified:
  head/usr.sbin/bsdinstall/scripts/netconfig_ipv6

Modified: head/usr.sbin/bsdinstall/scripts/netconfig_ipv6
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/netconfig_ipv6	Mon May 30 16:10:15 2011	(r222501)
+++ head/usr.sbin/bsdinstall/scripts/netconfig_ipv6	Mon May 30 17:27:48 2011	(r222502)
@@ -61,7 +61,7 @@ while : ; do
 		if [ ! -z $BSDINSTALL_CONFIGCURRENT ]; then
 			dialog --backtitle 'FreeBSD Installer' \
 			    --infobox "Sending Router Solicitation ..." 0 0
-			ifconfig ${INTERFACE} inet6 accept_rtadv up
+			ifconfig ${INTERFACE} inet6 -ifdisabled accept_rtadv up
 			rtsol -F $INTERFACE 2>> $BSDINSTALL_LOG
 			if [ $? -ne 0 ]; then
 				dialog --backtitle 'FreeBSD Installer' --msgbox "SLAAC failed." 0 0


More information about the svn-src-head mailing list