SwordArMor-gentoo-overlay/net-misc/bird/files/initd-bird-2

51 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-03-05 11:45:47 +01:00
#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# 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
2019-03-05 11:45:47 +01:00
CONF_FILE="/etc/${RC_SVCNAME}.conf"
SOCK="/run/${RC_SVCNAME}.ctl"
2019-03-05 11:45:47 +01:00
client_args="-s ${SOCK}"
command_args="${client_args} -c ${CONF_FILE} -P ${pidfile}"
client_args="${client_args} -r"
2019-03-05 11:45:47 +01:00
depend() {
need net
use logger
}
check_run() {
BIRD_CHECK_CONF="birdc ${client_args} configure check"
2019-03-05 12:02:14 +01:00
# 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')
2019-03-05 11:45:47 +01:00
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')"
2019-03-05 11:45:47 +01:00
return 1
fi
}
reload() {
check_run || return 1
ebegin "Reloading BIRD"
2019-03-05 14:19:34 +01:00
start-stop-daemon --signal HUP --pidfile "${pidfile}"
2019-03-05 11:45:47 +01:00
eend $?
}
stop_pre() {
if [ "${RC_CMD}" = "restart" ] ; then
check_run || return 1
fi
}