svn commit: r287613 - head/etc/rc.d
Hiroki Sato
hrs at FreeBSD.org
Thu Sep 10 06:47:24 UTC 2015
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
}
More information about the svn-src-all
mailing list