aboutsummaryrefslogtreecommitdiffstats
path: root/testing/frr/frr.initd
blob: a6759a3f6e0a411e52ec1cb7b3c9441ddd883dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}