svn commit: r258061 - head/etc

John Baldwin jhb at FreeBSD.org
Tue Nov 12 18:59:24 UTC 2013


Author: jhb
Date: Tue Nov 12 18:59:23 2013
New Revision: 258061
URL: http://svnweb.freebsd.org/changeset/base/258061

Log:
  Revert r257715.  This breaks the case where devd isn't running.  The
  real solution to this is still being discussed and probably won't look
  quite like this.

Modified:
  head/etc/network.subr

Modified: head/etc/network.subr
==============================================================================
--- head/etc/network.subr	Tue Nov 12 18:43:35 2013	(r258060)
+++ head/etc/network.subr	Tue Nov 12 18:59:23 2013	(r258061)
@@ -1429,6 +1429,9 @@ childif_create()
 			fi
 			${IFCONFIG_CMD} $i name $child && cfg=0
 		fi
+		if autoif $child; then
+			ifn_start $child
+		fi
 	done
 
 	# Create vlan interfaces
@@ -1452,6 +1455,9 @@ childif_create()
 				${IFCONFIG_CMD} $i name $child && cfg=0
 			fi
 		fi
+		if autoif $child; then
+			ifn_start $child
+		fi
 	done
 
 	return ${cfg}


More information about the svn-src-head mailing list