#!/bin/sh
# chkconfig: 345 56 56
# description: A BGPv4, BGPv4+, BGPv4- routing engine for use with Zebra
# processname: bgpd
# config: /etc/sysconfig/bgpd
# config: /etc/bgpd.conf

# Source function library.
. /etc/init.d/functions

# Source networking configuration.
SourceIfNotEmpty /etc/sysconfig/network && [ "$NETWORKING" != no ] || exit

# Check bgpd config
[ -f /etc/zebra/bgpd.conf ] || exit 0

RETVAL=0
LOCKFILE=/var/lock/subsys/bgpd

start()
{
	echo -n "Starting BGP routing services: "

	# start daemons
	daemon bgpd --daemon

	RETVAL=$?
	[ $RETVAL -eq 0 ] && touch "$LOCKFILE"
	echo
}	

stop()
{
	echo -n "Shutting down BGP routing services: "
	
	# stop daemons
	killproc bgpd
	
	RETVAL=$?
	[ $RETVAL -eq 0 ] && rm -f "$LOCKFILE"
	echo
}

restart()
{
	stop
	start
}

# See how we were called.
case "$1" in
  start)
	start
	;;
  stop)
	stop
	;;
  reload)
	restart
	;;
  restart)
	restart
	;;
  condstop)
	# Stop the servce if it is already running
	if [ -e "$LOCKFILE" ]; then
	 stop
	fi
	;;
  condrestart)
	# Restart the servce if it is already running
	if [ -e "$LOCKFILE" ]; then
 	 restart
	fi
	;;
  status)
	# report the status of the daemons in free-form format
	status bgpd
	RETVAL=$?
	;;
  *)
	echo "Usage: ${0##*/} {start|stop|reload|restart|condstop|condrestart|status}"
	RETVAL=1
esac

exit $RETVAL
