mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-19 09:15:30 +03:00
http://www.olsr.org/mediawiki/index.php/Olsr_Daemon An implementation of the IETF RFC 3626: Optimized Link State Routing Protocol
14 lines
216 B
Text
14 lines
216 B
Text
#!/sbin/openrc-run
|
|
|
|
name=olsrd
|
|
command="/usr/sbin/$name"
|
|
command_args="$olsrd_opts"
|
|
command_background="yes"
|
|
|
|
start_stop_daemon_args="-g wheel -k 027"
|
|
pidfile="/run/$name.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|