Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Sep 2015 06:47:24 +0000 (UTC)
From:      Hiroki Sato <hrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287613 - head/etc/rc.d
Message-ID:  <201509100647.t8A6lOia036095@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hrs
Date: Thu Sep 10 06:47:23 2015
New Revision: 287613
URL: https://svnweb.freebsd.org/changeset/base/287613

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

Modified:
  head/etc/rc.d/netif

Modified: head/etc/rc.d/netif
==============================================================================
--- head/etc/rc.d/netif	Thu Sep 10 06:40:28 2015	(r287612)
+++ head/etc/rc.d/netif	Thu Sep 10 06:47:23 2015	(r287613)
@@ -88,7 +88,7 @@ netif_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?201509100647.t8A6lOia036095>