Date: Thu, 28 Jul 2011 03:01:22 +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: r224470 - head/usr.sbin/bsdinstall/scripts Message-ID: <201107280301.p6S31MlL082765@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bz Date: Thu Jul 28 03:01:22 2011 New Revision: 224470 URL: http://svn.freebsd.org/changeset/base/224470 Log: To inet or not two inet. Unbreak static IPv4 configuration. If you tried you were stuck in an endless loop. Reported by: kensmith Approved by: re (kib) for BETA1 Pointy hat to: bz - wonder why I had not tested legacy IP thoroughly.. Modified: head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 Modified: head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 ============================================================================== --- head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 Wed Jul 27 22:54:40 2011 (r224469) +++ head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 Thu Jul 28 03:01:22 2011 (r224470) @@ -78,7 +78,7 @@ echo $INTERFACE $IF_CONFIG | if [ ! -z $BSDINSTALL_CONFIGCURRENT ]; then . $BSDINSTALL_TMPETC/._rc.conf.net - ifconfig $INTERFACE inet `eval echo \\\$ifconfig_$INTERFACE` + ifconfig $INTERFACE `eval echo \\\$ifconfig_$INTERFACE` route delete -inet default route add -inet default $defaultrouter fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107280301.p6S31MlL082765>