Date: Mon, 30 May 2011 17:27:48 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r222502 - head/usr.sbin/bsdinstall/scripts Message-ID: <201105301727.p4UHRmA9086499@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105301727.p4UHRmA9086499>