Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Sep 2015 03:59:30 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r287737 - stable/10/etc/rc.d
Message-ID:  <201509130359.t8D3xUlF017150@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509130359.t8D3xUlF017150>