aboutsummaryrefslogtreecommitdiffstats
path: root/testing/frr/frr.initd
diff options
context:
space:
mode:
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
+}