From: Ondrej Filip Date: Wed, 5 Feb 2014 14:57:37 +0000 (+0100) Subject: Minor changes in Fedora init script. X-Git-Tag: v1.4.1~22^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9e6fbf924630abf821aa38f99e571f706536350;p=thirdparty%2Fbird.git Minor changes in Fedora init script. --- diff --git a/misc/bird.init b/misc/bird.init index 56842bfa3..23d6d8af5 100755 --- a/misc/bird.init +++ b/misc/bird.init @@ -26,7 +26,7 @@ BIRD6="yes" [ -f /usr/sbin/bird ] || BIRD4="no" [ "${NETWORKING}" = "yes" ] || BIRD4="no" -[ -f /etc/bird-6.conf ] || BIRD6="no" +[ -f /etc/bird6.conf ] || BIRD6="no" [ -f /usr/sbin/bird6 ] || BIRD6="no" [ "${NETWORKING_IPV6}" = "yes" ] || BIRD6="no" @@ -76,13 +76,17 @@ case "$1" in RETVAL=$? ;; reload) - killall -HUP bird - killall -HUP bird6 + killproc bird -HUP + RETVAL=$? + echo + echo -n "Reloading BIRD for IPv6: " + killproc bird6 -HUP RETVAL=$? + echo ;; *) echo "Usage: bird.init {start|stop|status|restart|reload}" exit 1 esac -exit $REVAL +exit $RETVAL