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

Bjoern A. Zeeb bz at FreeBSD.org
Thu Jul 28 03:01:22 UTC 2011


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


More information about the svn-src-head mailing list