aports/main/quagga/bgpd.initd

23 lines
532 B
Plaintext

#!/sbin/openrc-run
piddir=/var/run/quagga
pidfile=$piddir/$SVCNAME.pid
command=/usr/sbin/$SVCNAME
command_args="-d -f /etc/quagga/$SVCNAME.conf --pid_file $pidfile"
depend() {
need net zebra
after firewall opennhrp
}
start_pre() {
if ! [ -e /etc/quagga/$SVCNAME.conf ] ; then
eerror "You need to create /etc/quagga/$SVCNAME.conf first."
eerror "An example can be found in /usr/share/doc/quagga/$SVCNAME.conf.sample"
eerror "from quagga-doc package"
return 1
fi
checkpath --owner quagga:quagga --directory $piddir
}