aboutsummaryrefslogtreecommitdiffstats
path: root/testing/frr/frr.initd
diff options
context:
space:
mode:
authorArthur Jones <arthur.jones@riverbed.com>2018-06-04 15:56:13 -0700
committerNatanael Copa <ncopa@alpinelinux.org>2018-07-31 12:27:51 +0000
commitd2ca939b7f712c6c0986669e9a132126b96ea375 (patch)
tree204eb96254cbfc547e64e2d53a3b1adc16b12079 /testing/frr/frr.initd
parent2d745609a9dc121e61cca3790f80d7800f2bef4c (diff)
downloadaports-d2ca939b7f712c6c0986669e9a132126b96ea375.tar.bz2
aports-d2ca939b7f712c6c0986669e9a132126b96ea375.tar.xz
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
Diffstat (limited to 'testing/frr/frr.initd')
-rwxr-xr-xtesting/frr/frr.initd19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/frr/frr.initd b/testing/frr/frr.initd
new file mode 100755
index 0000000000..a6759a3f6e
--- /dev/null
+++ b/testing/frr/frr.initd
@@ -0,0 +1,19 @@
+#!/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
+}