diff options
author | Olivier Cochard <olivier@FreeBSD.org> | 2020-04-12 16:00:59 +0000 |
---|---|---|
committer | Olivier Cochard <olivier@FreeBSD.org> | 2020-04-12 16:00:59 +0000 |
commit | 991b705588cba0d1a3ff0f03189cbfa329a87b27 (patch) | |
tree | 40a3427c8aecc4efdd8797966fb1c7c7f7774fa2 | |
parent | security/openvpn-devel: update to 2020-W15 snapshot (diff) |
Add 'service frr onerestart all' usage.
PR: 245480
Submitted by: Joe Greco <jgreco@ns.sol.net>
-rw-r--r-- | net/frr7/Makefile | 3 | ||||
-rw-r--r-- | net/frr7/files/frr.in | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/net/frr7/Makefile b/net/frr7/Makefile index 58d763d102b5..d14e0520f197 100644 --- a/net/frr7/Makefile +++ b/net/frr7/Makefile @@ -3,6 +3,7 @@ PORTNAME= frr PORTVERSION= 7.3 DISTVERSIONPREFIX= frr- +PORTREVISION= 1 CATEGORIES= net PKGNAMESUFFIX= 7 @@ -17,7 +18,7 @@ LIB_DEPENDS= libjson-c.so:devel/json-c \ libyang.so:net/libyang USES= autoreconf bison compiler:c++11-lang gmake pkgconfig libtool \ - makeinfo python:2.7-3.6,build readline + makeinfo python:2.7-3.8,build readline BINARY_ALIAS= python=${PYTHON_VERSION} diff --git a/net/frr7/files/frr.in b/net/frr7/files/frr.in index 341e0a2fc4ca..842b60eaed53 100644 --- a/net/frr7/files/frr.in +++ b/net/frr7/files/frr.in @@ -136,7 +136,7 @@ case "$1" in esac shift -if [ $# -ge 1 ]; then +if [ $# -ge 1 -a "$1" != "all" ]; then frr_daemons="$*" fi |