#! /bin/sh
# chkconfig: - 56 56
# description: An OSPF v2 routing engine for use with Zebra
# processname: ospfd
# config: /etc/sysconfig/ospfd
# config: /etc/ospfd.conf

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

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

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

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

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

	# start daemons
	daemon ospfd --daemon

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

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

exit $RETVAL
