1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/testing/bird/bird.initd
Eric Poelke 1821885206 testing/bird: Fix bird init script.
The bird init script had a bug in it that prevented restart form working
properly.  Gentoo's bird init script seems much more mature with proper
pid file handling, updated openrc environment variables, and support for
reload via openrc.
2019-10-20 22:33:00 +02:00

52 lines
1.2 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/sbin/openrc-run
# Copyright 1999-2019 Gentoo Authors
# Copyright 2019 Alarig Le Lay <alarig@grifon.fr>
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
pidfile="/run/${RC_SVCNAME}.pid"
command="/usr/sbin/${RC_SVCNAME}"
retry=15
CONF_FILE="/etc/${RC_SVCNAME}.conf"
SOCK="/run/${RC_SVCNAME}.ctl"
client_args="-s ${SOCK}"
command_args="${client_args} -R -c ${CONF_FILE} -P ${pidfile}"
client_args="${client_args} -r"
depend() {
need net
use logger
after firewall
}
check_run() {
BIRD_CHECK_CONF="birdc ${client_args} configure check \"${CONF_FILE}\""
# Check if the bird parser returns what we want
# We cant use $? because its always 0 if the sock works
STATE=$(${BIRD_CHECK_CONF} | grep 'Configuration OK')
if [ -n "${STATE}" ]; then
return 0
else
# We remove the first three lines (garbage informations), the
# errors begin after that
eerror "$(${BIRD_CHECK_CONF} | sed '1,3d')"
return 1
fi
}
reload() {
check_run || return 1
ebegin "Reloading BIRD"
start-stop-daemon --signal HUP --pidfile "${pidfile}"
eend $?
}
stop_pre() {
if [ "${RC_CMD}" = "restart" ] ; then
check_run || return 1
fi
}