frr: fix dependency information and paths for staticd rc script

This commit is contained in:
Frank Kardel 2020-10-27 11:42:16 +01:00
parent d7c3540c30
commit 96053e1049
1 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
#!/bin/sh #!/bin/sh
# #
# ripd is part of the quagga routing beast # staticd is part of the frr routing beast
# #
# PROVIDE: ripd # PROVIDE: staticd
# REQUIRE: zebra # REQUIRE: zebra
## ##
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/pkg/sbin:/usr/pkg/bin PATH=/sbin:/bin:/usr/sbin:/usr/bin:@PREFIX@/sbin:@PREFIX@/bin
export PATH export PATH
if [ -f /etc/rc.subr ] if [ -f /etc/rc.subr ]
@ -16,11 +16,11 @@ fi
name="staticd" name="staticd"
rcvar=$name rcvar=$name
required_files="/usr/pkg/etc/frr/${name}.conf" required_files="@PREFIX@/etc/frr/${name}.conf"
command="/usr/pkg/sbin/${name}" command="@PREFIX@/sbin/${name}"
command_args="-d" command_args="-d"
socket_dir=/var/run/frr socket_dir="@VARBASE@/run/frr"
pidfile="${socket_dir}/${name}.pid" pidfile="${socket_dir}/${name}.pid"
load_rc_config $name load_rc_config $name