diff options
author | hrs <hrs@FreeBSD.org> | 2015-09-13 03:59:29 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2015-09-13 03:59:29 +0000 |
commit | 424570dc8f58d2503207bd12d4c578a9b4ce4a27 (patch) | |
tree | 323f0986248ed170a2160b0ab930fa4430009ea0 /etc | |
parent | eb19940746675035d2f9f2cdf7f6f6a281c92e19 (diff) | |
download | FreeBSD-src-424570dc8f58d2503207bd12d4c578a9b4ce4a27.zip FreeBSD-src-424570dc8f58d2503207bd12d4c578a9b4ce4a27.tar.gz |
MFC 287613:
Update only static routes when an interface is specified. This fixed
a bad side-effect reported in PR 202144.
PR: 202144
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc.d/netif | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/netif b/etc/rc.d/netif index daece80..d8998e5 100755 --- a/etc/rc.d/netif +++ b/etc/rc.d/netif @@ -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 } |