aports/testing/frr/frr.initd
Arthur Jones d2ca939b7f testing/frr: new aport for free range routing, a fork of quagga
FRRouting is free software that implements and manages various
IPv4 and IPv6 routing protocols.

Currently FRRouting supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2,
RIPng, IS-IS, PIM-SM/MSDP, LDP and Babel as well as very early support
for EIGRP and NHRP.

During PR review, fix for openrc-run issue discovered and fix contributed
by Hidde Van der Heide.

fixes #8795
2018-07-31 12:27:51 +00:00

20 lines
224 B
Plaintext
Executable File

#!/sbin/openrc-run
description="FRRouting"
start() {
/usr/lib/frr/frr start
}
stop() {
/usr/lib/frr/frr stop
}
restart() {
/usr/lib/frr/frr restart
}
status() {
/usr/lib/frr/frr status
}