#! /bin/sh
# chkconfig: 345 55 55
# description: GNU Zebra routing manager
# processname: zebra
# config: /etc/sysconfig/zebra
# config: /etc/zebra.conf

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

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

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

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

start()
{
	echo -n "Starting zebra services: "

	# start daemons
	daemon zebra --daemon

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

stop()
{
	echo -n "Shutting down zebra services: "
	
	# stop daemons
	killproc zebra
	
	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 zebra
	RETVAL=$?
	;;
  *)
	echo "Usage: ${0##*/} {start|stop|reload|restart|condstop|condrestart|status}"
	RETVAL=1
esac

exit $RETVAL
