mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
27 lines
430 B
Plaintext
Executable File
27 lines
430 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="FRRouting"
|
|
extra_started_commands="reload"
|
|
|
|
start() {
|
|
checkpath --owner frr:frr --directory /etc/frr
|
|
checkpath --file /etc/frr/vtysh.conf
|
|
/usr/lib/frr/frrinit.sh start
|
|
}
|
|
|
|
stop() {
|
|
/usr/lib/frr/frrinit.sh stop
|
|
}
|
|
|
|
restart() {
|
|
/usr/lib/frr/frrinit.sh restart
|
|
}
|
|
|
|
status() {
|
|
/usr/lib/frr/frrinit.sh status
|
|
}
|
|
|
|
reload() {
|
|
/usr/lib/frr/frrinit.sh reload
|
|
}
|