diff options
Diffstat (limited to 'testing/frr/frr.initd')
-rwxr-xr-x | testing/frr/frr.initd | 19 |
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 +} |