svn commit: r287737 - stable/10/etc/rc.d

Hiroki Sato hrs at FreeBSD.org
Sun Sep 13 03:59:30 UTC 2015


Author: hrs
Date: Sun Sep 13 03:59:29 2015
New Revision: 287737
URL: https://svnweb.freebsd.org/changeset/base/287737

Log:
  MFC 287613:
  
  Update only static routes when an interface is specified.  This fixed
  a bad side-effect reported in PR 202144.
  
  PR:	202144

Modified:
  stable/10/etc/rc.d/netif
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/rc.d/netif
==============================================================================
--- stable/10/etc/rc.d/netif	Sun Sep 13 03:15:37 2015	(r287736)
+++ stable/10/etc/rc.d/netif	Sun Sep 13 03:59:29 2015	(r287737)
@@ -85,7 +85,7 @@ network_start()
 	fi
 	if [ -f /etc/rc.d/routing -a -n "$cmdifn" ] ; then
 		for _if in $cmdifn; do
-			/etc/rc.d/routing start any $_if
+			/etc/rc.d/routing static any $_if
 		done
 	fi
 }


More information about the svn-src-all mailing list